/* ===== VARIABLES ===== */
:root {
    --blanc: #ffffff;
    --blanc-casse: #faf7f2;
    --gris-clair: #f0ede8;
    --gris: #e5e0d9;
    --taupe: #b7aa9d;
    --taupe-fonce: #8b7e71;
    --terracotta: #c46b4f;
    --terracotta-fonce: #a55a42;
    --noir: #1e1e1e;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    --shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
    --shadow-hover: 0 30px 50px -20px rgba(0,0,0,0.15);
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--blanc-casse);
    color: var(--noir);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--noir);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s, visibility 1s;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-top-color: var(--terracotta);
    border-right-color: var(--terracotta);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: white;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 3px;
    opacity: 0.8;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== CURSEUR ===== */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--terracotta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: 0.1s;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--noir);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--noir);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--terracotta);
}

.nav-cta {
    border: 1px solid var(--gris);
    padding: 8px 25px;
    border-radius: 40px;
}

.nav-cta:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

.nav-cta:hover::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--noir);
    transition: var(--transition);
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--terracotta);
    color: white;
}

.btn-primary:hover {
    background: var(--terracotta-fonce);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--noir);
    color: var(--noir);
}

.btn-outline:hover {
    background: var(--noir);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--noir);
}

.btn-full {
    width: 100%;
}

.btn.small {
    padding: 10px 25px;
    font-size: 0.85rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--taupe-fonce);
    font-size: 0.85rem;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-indicator.white {
    color: white;
}

.scroll-indicator.white .scroll-line {
    background: rgba(255,255,255,0.3);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gris);
    margin: 15px auto 0;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: scaleY(0.3); opacity: 1; }
    50% { transform: scaleY(1); opacity: 0.5; }
    100% { transform: scaleY(0.3); opacity: 1; }
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 50px;
    max-width: 700px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    display: block;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--terracotta);
    margin: 1.5rem 0;
}

.section-text {
    color: var(--taupe-fonce);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ===== ANIMATIONS COMMUNES ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO ACCUEIL ===== */
.hero-accueil {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: white;
}

.floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gris-clair), var(--gris));
    opacity: 0.3;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: floatRotate 20s linear infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: floatRotate 15s linear infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 20%;
    animation: floatRotate 12s linear infinite;
}

.circle-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation: floatRotate 18s linear infinite reverse;
}

.floating-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
    opacity: 0.1;
}

.line-1 {
    width: 300px;
    height: 2px;
    top: 40%;
    left: -100px;
    transform: rotate(45deg);
    animation: slideLine 8s ease-in-out infinite;
}

.line-2 {
    width: 200px;
    height: 2px;
    bottom: 30%;
    right: -50px;
    transform: rotate(-30deg);
    animation: slideLine 10s ease-in-out infinite reverse;
}

@keyframes floatRotate {
    0% { transform: rotate(0deg) translate(0, 0); }
    33% { transform: rotate(120deg) translate(30px, -30px); }
    66% { transform: rotate(240deg) translate(-30px, 30px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

@keyframes slideLine {
    0%, 100% { transform: translateX(0) rotate(45deg); opacity: 0.1; }
    50% { transform: translateX(50px) rotate(45deg); opacity: 0.3; }
}

.hero-accueil .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--noir);
}

.title-line.accent {
    color: var(--terracotta);
    font-style: italic;
    margin-left: 50px;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--terracotta);
    margin: 2rem 0;
}

.hero-divider.white {
    background: white;
}

.hero-description {
    font-size: 1.2rem;
    margin: 2rem 0;
    color: var(--taupe-fonce);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ===== STATS ===== */
.stats {
    padding: 80px 0;
    background: var(--blanc-casse);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--terracotta);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--taupe-fonce);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FEATURED SECTIONS (ACCUEIL) ===== */
.featured-collection {
    padding: 100px 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.featured-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.featured-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.featured-craft {
    padding: 80px 0;
    background: var(--blanc-casse);
}

.craft-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.craft-preview-content {
    padding-right: 40px;
}

.craft-preview-text {
    font-size: 1.2rem;
    color: var(--taupe-fonce);
    margin: 30px 0;
}

.craft-preview-video {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.craft-preview-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-about {
    padding: 100px 0;
    background: white;
}

.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-image {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.about-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-preview-text {
    font-size: 1.1rem;
    color: var(--taupe-fonce);
    margin: 30px 0;
    line-height: 1.8;
}

.about-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--terracotta);
    margin-top: 30px;
    padding: 20px;
    border-left: 2px solid var(--terracotta);
}

.atelier-invite {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/atelier-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.invite-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 60px 40px;
}

.invite-card h2 {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: 20px;
}

.invite-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== COLLECTION PAGE ===== */
.hero-collection {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #fcf9f5 0%, #f5efe8 100%);
}

.ceramic-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pattern-vase {
    position: absolute;
    background: rgba(196, 107, 79, 0.06);
    border-radius: 40% 40% 30% 30% / 60% 60% 20% 20%;
    transform: rotate(var(--rot));
}

.vase-1 {
    width: 200px;
    height: 300px;
    top: 10%;
    left: 5%;
    --rot: -15deg;
    animation: floatVase 20s ease-in-out infinite;
}

.vase-2 {
    width: 150px;
    height: 250px;
    bottom: 15%;
    right: 8%;
    --rot: 25deg;
    background: rgba(139, 126, 113, 0.06);
    animation: floatVase 18s ease-in-out infinite reverse;
}

.vase-3 {
    width: 120px;
    height: 200px;
    top: 20%;
    right: 20%;
    --rot: 45deg;
    animation: floatVase 22s ease-in-out infinite;
}

.vase-4 {
    width: 180px;
    height: 280px;
    bottom: 10%;
    left: 15%;
    --rot: -30deg;
    background: rgba(183, 170, 157, 0.06);
    animation: floatVase 25s ease-in-out infinite reverse;
}

.pattern-pot {
    position: absolute;
    background: rgba(196, 107, 79, 0.04);
    border-radius: 50%;
}

.pot-1 {
    width: 250px;
    height: 200px;
    top: 40%;
    right: 15%;
    border-radius: 50% 50% 40% 40%;
    animation: floatPot 19s ease-in-out infinite;
}

.pot-2 {
    width: 180px;
    height: 150px;
    bottom: 25%;
    left: 20%;
    border-radius: 45% 45% 35% 35%;
    background: rgba(139, 126, 113, 0.04);
    animation: floatPot 21s ease-in-out infinite reverse;
}

@keyframes floatVase {
    0%, 100% { transform: rotate(var(--rot)) translateY(0); }
    50% { transform: rotate(calc(var(--rot) + 5deg)) translateY(-30px); }
}

@keyframes floatPot {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.collection-stats-mini {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--taupe-fonce);
}

.collection-stats-mini strong {
    color: var(--terracotta);
    font-size: 1.4rem;
    margin-right: 5px;
}

.collection-filters-section {
    padding: 40px 0 20px;
    background: white;
    border-bottom: 1px solid var(--gris);
    position: sticky;
    top: 80px;
    z-index: 90;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.filters-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-label {
    font-size: 0.9rem;
    color: var(--taupe-fonce);
    letter-spacing: 1px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gris);
    padding: 10px 25px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn .count {
    background: var(--gris-clair);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--noir);
    border-color: var(--noir);
    color: white;
}

.filter-btn:hover .count,
.filter-btn.active .count {
    background: rgba(255,255,255,0.2);
    color: white;
}

.filter-view {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--gris);
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--taupe-fonce);
}

.view-btn:hover,
.view-btn.active {
    background: var(--noir);
    border-color: var(--noir);
    color: white;
}

.collection-showcase {
    padding: 60px 0 80px;
    background: white;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.showcase-row.triple {
    grid-template-columns: repeat(3, 1fr);
}

.showcase-row.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.showcase-row.duo {
    grid-template-columns: repeat(3, 1fr);
}

.showcase-item {
    background: var(--blanc-casse);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.showcase-item.large {
    grid-column: span 1;
}

.item-media {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.showcase-item.large .item-media {
    height: 450px;
}

.item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.showcase-item:hover .item-media img {
    transform: scale(1.05);
}

.item-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--terracotta);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.item-details {
    padding: 30px;
}

.item-details h3 {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    margin-bottom: 10px;
}

.item-type {
    color: var(--terracotta);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.item-description {
    color: var(--taupe-fonce);
    line-height: 1.6;
    margin-bottom: 20px;
}

.item-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.dimensions {
    color: var(--taupe);
}

.disponibilite {
    color: var(--terracotta);
    font-weight: 500;
}

.item-link {
    color: var(--noir);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.item-link i {
    transition: transform 0.3s;
}

.item-link:hover {
    color: var(--terracotta);
}

.item-link:hover i {
    transform: translateX(5px);
}

.collection-editorial {
    padding: 100px 0;
    background: var(--blanc-casse);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.editorial-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.editorial-text p {
    font-size: 1.1rem;
    color: var(--taupe-fonce);
    line-height: 1.8;
    margin-bottom: 20px;
}

.editorial-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    color: var(--noir);
}

.limited-series {
    padding: 100px 0;
    background: white;
}

.series-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.series-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.series-header p {
    color: var(--taupe-fonce);
    font-size: 1.1rem;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.series-item {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.series-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.series-item:hover img {
    transform: scale(1.1);
}

.series-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.series-item:hover .series-overlay {
    transform: translateY(0);
}

.series-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.series-overlay p {
    opacity: 0.8;
}

.collection-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--noir) 0%, #2a2a2a 100%);
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 60px 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* ===== SAVOIR-FAIRE PAGE ===== */
.hero-savoirfaire {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5efe8 0%, #faf2ea 100%);
}

.handprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.handprint {
    position: absolute;
    background: rgba(196, 107, 79, 0.03);
    width: 180px;
    height: 180px;
    border-radius: 40% 40% 30% 30%;
    transform: rotate(var(--hand-rot));
    clip-path: polygon(30% 0%, 70% 0%, 85% 20%, 85% 60%, 70% 80%, 30% 80%, 15% 60%, 15% 20%);
}

.hand-1 {
    top: 15%;
    left: 8%;
    --hand-rot: 10deg;
    width: 220px;
    height: 220px;
    animation: handMove 22s ease-in-out infinite;
}

.hand-2 {
    bottom: 10%;
    right: 12%;
    --hand-rot: -15deg;
    width: 260px;
    height: 260px;
    background: rgba(139, 126, 113, 0.03);
    animation: handMove 25s ease-in-out infinite reverse;
}

.hand-3 {
    top: 40%;
    right: 25%;
    --hand-rot: 45deg;
    width: 150px;
    height: 150px;
    animation: handMove 18s ease-in-out infinite;
}

.hand-4 {
    bottom: 30%;
    left: 20%;
    --hand-rot: -30deg;
    width: 200px;
    height: 200px;
    background: rgba(183, 170, 157, 0.03);
    animation: handMove 20s ease-in-out infinite reverse;
}

.clay-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(139,126,113,0.02) 0px, rgba(139,126,113,0.02) 2px, transparent 2px, transparent 8px);
}

.clay-texture-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(196,107,79,0.02) 0%, transparent 30%);
}

@keyframes handMove {
    0%, 100% { transform: rotate(var(--hand-rot)) translateY(0) scale(1); }
    50% { transform: rotate(calc(var(--hand-rot) + 8deg)) translateY(-25px) scale(1.02); }
}

.process-tagline {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    font-size: 1rem;
    color: var(--taupe-fonce);
    letter-spacing: 1px;
}

.craft-poetry {
    padding: 100px 0;
    background: var(--blanc-casse);
}

.poetry-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.poetry-text {
    font-size: 2rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--noir);
    line-height: 1.5;
    margin-bottom: 30px;
}

.poetry-author {
    color: var(--terracotta);
    font-size: 1.1rem;
}

.atelier-journal {
    padding: 80px 0 100px;
    background: white;
}

.journal-header {
    text-align: center;
    margin-bottom: 60px;
}

.journal-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.journal-header p {
    color: var(--taupe-fonce);
    font-size: 1.2rem;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.journal-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.journal-item.large {
    grid-column: span 2;
    height: 400px;
}

.journal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.journal-item:hover img {
    transform: scale(1.05);
}

.journal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.journal-item:hover .journal-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.step-num {
    font-size: 0.9rem;
    color: var(--terracotta);
    display: block;
    margin-bottom: 10px;
}

.journal-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.journal-caption p {
    opacity: 0.8;
}

.materials-focus {
    padding: 100px 0;
    background: var(--noir);
    color: white;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.material-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.material-card:hover {
    transform: translateY(-10px);
    border-color: var(--terracotta);
}

.material-card i {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 25px;
}

.material-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.material-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.sound-atmosphere {
    padding: 100px 0;
    background: var(--blanc-casse);
}

.atmosphere-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.atmosphere-block i {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 30px;
}

.atmosphere-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.atmosphere-block p {
    font-size: 1.2rem;
    color: var(--taupe-fonce);
    line-height: 1.8;
    font-style: italic;
}

.texture-gallery {
    padding: 100px 0;
    background: white;
}

.texture-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.texture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.texture-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.texture-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.texture-item:hover img {
    transform: scale(1.1);
}

.texture-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.texture-item:hover .texture-label {
    transform: translateY(0);
}

.craft-closing {
    padding: 100px 0;
    background: var(--blanc-casse);
}

.closing-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.closing-quote p {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: var(--noir);
    line-height: 1.5;
}

.craft-invite {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../assets/images/atelier-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.invite-content {
    max-width: 600px;
    margin: 0 auto;
}

.invite-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.invite-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== À PROPOS PAGE ===== */
.hero-propos {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.portrait-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.portrait-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.portrait-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-propos .hero-content-center {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-propos h1 {
    color: white;
    font-size: 5rem;
}

.hero-propos .hero-quote {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-style: italic;
    max-width: 700px;
    margin: 30px auto;
}

.signature-mini img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-top: 20px;
}

.portrait-intime {
    padding: 80px 0;
    background: white;
}

.intime-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.intime-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.intime-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

.intime-image:hover img {
    transform: scale(1.02);
}

.image-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--taupe-fonce);
}

.intime-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: var(--font-serif);
}

.intime-text p {
    font-size: 1.2rem;
    color: var(--taupe-fonce);
    line-height: 1.8;
    margin-bottom: 25px;
}

.inspirations-sentimentales {
    padding: 100px 0;
    background: var(--blanc-casse);
}

.inspirations-sentimentales h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.inspirations-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.inspiration-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.inspiration-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.inspiration-card i {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 25px;
}

.inspiration-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.inspiration-card p {
    color: var(--taupe-fonce);
    line-height: 1.6;
}

.journee-type {
    padding: 100px 0;
    background: white;
}

.journee-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.journee-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.journee-header p {
    color: var(--taupe-fonce);
    font-size: 1.2rem;
}

.journee-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.journee-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gris);
}

.timeline-moment {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.moment-heure {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--terracotta);
    text-align: right;
    padding-right: 20px;
    position: relative;
}

.moment-heure::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--terracotta);
    border-radius: 50%;
}

.moment-content {
    padding-left: 30px;
}

.moment-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-serif);
}

.moment-content p {
    color: var(--taupe-fonce);
    line-height: 1.6;
}

.ressenti {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--noir) 0%, #2a2a2a 100%);
    color: white;
}

.ressenti-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ressenti-text {
    font-size: 2rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.5;
    opacity: 0.95;
}

.clients-fidele {
    padding: 100px 0;
    background: white;
}

.clients-fidele h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-temoignage {
    background: var(--blanc-casse);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
}

.client-temoignage::before {
    content: '"';
    font-size: 5rem;
    font-family: var(--font-serif);
    color: var(--terracotta);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.client-temoignage p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--taupe-fonce);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.client-nom {
    color: var(--terracotta);
    font-size: 0.95rem;
}

.invitation-rencontre {
    padding: 100px 0;
    background: var(--blanc-casse);
}

.rencontre-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.rencontre-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.rencontre-content p {
    font-size: 1.3rem;
    color: var(--taupe-fonce);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ===== ATELIER PAGE - Héro avec outils de potier ===== */
.hero-atelier-outils {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f5efe8 0%, #faf2ea 100%);
}

.outils-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.outil {
    position: absolute;
    background: rgba(196, 107, 79, 0.04);
    border: 1px solid rgba(196, 107, 79, 0.1);
}

/* Tour de potier */
.outil-tour {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    top: 10%;
    right: 5%;
    border: 2px solid rgba(196, 107, 79, 0.1);
    animation: tourne 30s linear infinite;
}

.outil-tour::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(196, 107, 79, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Four */
.outil-four {
    width: 180px;
    height: 220px;
    bottom: 15%;
    left: 8%;
    border-radius: 20px;
    transform: rotate(-5deg);
    background: rgba(139, 126, 113, 0.04);
    animation: flotte 20s ease-in-out infinite;
}

.outil-four::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 40%;
    width: 30px;
    height: 30px;
    background: rgba(196, 107, 79, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(196, 107, 79, 0.2);
    animation: feu 3s ease-in-out infinite;
}

/* Pinceau */
.outil-pinceau {
    width: 20px;
    height: 120px;
    top: 40%;
    right: 15%;
    transform: rotate(15deg);
    border-radius: 10px;
    background: rgba(196, 107, 79, 0.04);
    animation: balance 15s ease-in-out infinite;
}

.outil-pinceau::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -8px;
    width: 35px;
    height: 15px;
    background: rgba(196, 107, 79, 0.08);
    border-radius: 5px;
    transform: rotate(-5deg);
}

/* Estèque */
.outil-estèque {
    width: 100px;
    height: 25px;
    bottom: 25%;
    right: 20%;
    transform: rotate(-20deg);
    border-radius: 20px;
    background: rgba(139, 126, 113, 0.04);
    animation: flotte 18s ease-in-out infinite reverse;
}

.outil-estèque::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -5px;
    width: 20px;
    height: 35px;
    background: rgba(139, 126, 113, 0.04);
    border-radius: 5px;
    transform: rotate(10deg);
}

/* Ébauchoir */
.outil-ébauchoir {
    width: 120px;
    height: 30px;
    top: 20%;
    left: 12%;
    transform: rotate(40deg);
    border-radius: 15px;
    background: rgba(196, 107, 79, 0.04);
    animation: balance 22s ease-in-out infinite;
}

.outil-ébauchoir::after {
    content: '';
    position: absolute;
    left: -8px;
    top: -5px;
    width: 25px;
    height: 40px;
    background: rgba(196, 107, 79, 0.04);
    border-radius: 5px;
    transform: rotate(-10deg);
}

/* Tournette */
.outil-tournette {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: 30%;
    right: 30%;
    border: 2px solid rgba(139, 126, 113, 0.1);
    animation: tourne 25s linear infinite reverse;
}

.outil-tournette::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(139, 126, 113, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Traces circulaires */
.trace-cercle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196, 107, 79, 0.08);
}

.cercle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: scalePulse 15s ease-in-out infinite;
}

.cercle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    border-color: rgba(139, 126, 113, 0.08);
    animation: scalePulse 18s ease-in-out infinite reverse;
}

/* Lignes */
.trace-ligne {
    position: absolute;
    background: rgba(196, 107, 79, 0.05);
    height: 1px;
}

.ligne-outil-1 {
    width: 400px;
    top: 30%;
    left: -100px;
    transform: rotate(25deg);
    animation: ligneGlisse 20s ease-in-out infinite;
}

.ligne-outil-2 {
    width: 350px;
    bottom: 20%;
    right: -80px;
    transform: rotate(-15deg);
    background: rgba(139, 126, 113, 0.05);
    animation: ligneGlisse 22s ease-in-out infinite reverse;
}

@keyframes tourne {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes flotte {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-20px); }
}

@keyframes balance {
    0%, 100% { transform: rotate(15deg) translateX(0); }
    50% { transform: rotate(20deg) translateX(10px); }
}

@keyframes feu {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

@keyframes scalePulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes ligneGlisse {
    0%, 100% { transform: translateX(0) rotate(25deg); opacity: 0.1; }
    50% { transform: translateX(30px) rotate(25deg); opacity: 0.2; }
}

.hero-atelier-outils .hero-content-center {
    position: relative;
    z-index: 2;
}

.hero-atelier-outils h1 {
    font-size: 4.5rem;
    margin: 20px 0;
}

.hero-atelier-outils .hero-description {
    font-size: 1.3rem;
    color: var(--taupe-fonce);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.atelier-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow);
    color: var(--noir);
    font-size: 1rem;
    margin-top: 20px;
}

.atelier-badge i {
    color: var(--terracotta);
}

.espace-atelier {
    padding: 80px 0;
    background: white;
}

.espace-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.espace-texte h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: var(--font-serif);
}

.espace-texte p {
    color: var(--taupe-fonce);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.espace-chiffres {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chiffre {
    text-align: center;
    padding: 20px;
    background: var(--blanc-casse);
    border-radius: 10px;
}

.chiffre .grand {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1.2;
}

.chiffre span:last-child {
    color: var(--taupe-fonce);
    font-size: 0.95rem;
}

.galerie-immersive {
    padding: 0;
}

.immersive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.immersive-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.immersive-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.immersive-item:hover img {
    transform: scale(1.05);
}

.immersive-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    font-size: 2rem;
    font-family: var(--font-serif);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.visites-simples {
    padding: 80px 0;
    background: var(--blanc-casse);
    text-align: center;
}

.visite-block {
    max-width: 600px;
    margin: 0 auto;
}

.visite-block h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.visite-frequence {
    color: var(--terracotta);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.visite-prochaine {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.prochaine-label {
    display: block;
    color: var(--taupe);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.prochaine-date {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.prochaine-places {
    display: block;
    color: var(--terracotta);
    font-size: 1rem;
}

.visite-info {
    margin-top: 20px;
    color: var(--taupe-fonce);
    font-size: 0.95rem;
    font-style: italic;
}

.acces-simple {
    padding: 40px 0;
    background: white;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.acces-adresse, .acces-metro {
    display: flex;
    align-items: center;
    gap: 15px;
}

.acces-adresse i, .acces-metro i {
    color: var(--terracotta);
    font-size: 1.2rem;
}

.acces-adresse p, .acces-metro p {
    color: var(--taupe-fonce);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--noir);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--terracotta);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.maintenance {
    color: var(--terracotta);
    font-weight: 500;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--terracotta-fonce);
    transform: translateY(-5px);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--terracotta);
    transform: rotate(90deg);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--taupe);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--terracotta);
    transform: rotate(90deg);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--taupe-fonce);
    margin-bottom: 30px;
}

.modal-dates {
    margin: 30px 0;
}

.modal-date {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--gris);
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-date:hover {
    border-color: var(--terracotta);
    background: var(--blanc-casse);
}

.modal-date input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal-date label {
    cursor: pointer;
    flex: 1;
}

.modal-date strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.modal-date span {
    color: var(--taupe-fonce);
    font-size: 0.9rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0 20px;
}

.modal-form input {
    padding: 15px;
    border: 1px solid var(--gris);
    border-radius: 10px;
    font-family: var(--font-sans);
}

.modal-form input:focus {
    outline: none;
    border-color: var(--terracotta);
}

.modal-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 15px;
}

/* ===== CLASSES COMMUNES ===== */
.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content-center h1 {
    font-size: 4.5rem;
    font-family: var(--font-serif);
    margin: 20px 0;
    color: var(--noir);
}

.light-text h1,
.light-text .hero-quote,
.light-text .hero-tag {
    color: white;
}

.light-text .hero-tag {
    color: rgba(255,255,255,0.9);
}

/* ===== VUES COMPACTES POUR COLLECTION ===== */
.collection-showcase.view-compact .showcase-row {
    gap: 20px;
}

.collection-showcase.view-compact .showcase-item .item-media {
    height: 250px;
}

.collection-showcase.view-compact .showcase-item.large .item-media {
    height: 300px;
}

.collection-showcase.view-compact .item-details {
    padding: 20px;
}

.collection-showcase.view-compact .item-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.collection-showcase.view-compact .item-description {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.collection-showcase.view-compact .item-meta {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.collection-showcase.view-compact .item-link {
    font-size: 0.85rem;
}

/* ===== CONTACT PAGE - DESIGN ÉPURÉ ===== */
.hero-contact-simple {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: white;
    text-align: center;
    padding: 120px 0 60px;
}

.hero-contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-contact-content h1 {
    font-size: 4rem;
    margin: 20px 0;
    font-family: var(--font-serif);
}

.hero-contact-content p {
    font-size: 1.2rem;
    color: var(--taupe-fonce);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info-simple {
    padding: 60px 0 40px;
    background: var(--blanc-casse);
}

.info-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-simple-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.info-simple-card:hover {
    transform: translateY(-5px);
}

.info-simple-card i {
    font-size: 2.2rem;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.info-simple-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.info-simple-card a {
    color: var(--noir);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.info-simple-card a:hover {
    color: var(--terracotta);
}

.info-simple-card p {
    color: var(--noir);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.info-simple-card span {
    color: var(--taupe);
    font-size: 0.9rem;
    font-style: italic;
}

/* Formulaire Élégant */
.form-elegant {
    padding: 80px 0;
    background: white;
}

.form-elegant-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-elegant-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-elegant-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.form-elegant-header p {
    color: var(--taupe-fonce);
    font-size: 1.1rem;
}

.form-elegant-content {
    width: 100%;
}

.form-elegant-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-elegant-group {
    position: relative;
    margin-bottom: 25px;
}

.form-elegant-group input,
.form-elegant-group select,
.form-elegant-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--gris);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-elegant-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-elegant-group input:focus,
.form-elegant-group select:focus,
.form-elegant-group textarea:focus {
    border-bottom-color: var(--terracotta);
}

.form-elegant-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--taupe);
    font-size: 1rem;
    transition: all 0.3s;
    pointer-events: none;
}

.form-elegant-group input:focus ~ label,
.form-elegant-group input:not(:placeholder-shown) ~ label,
.form-elegant-group textarea:focus ~ label,
.form-elegant-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--terracotta);
}

.form-elegant-group input::placeholder,
.form-elegant-group textarea::placeholder {
    color: transparent;
}

.form-elegant-group select {
    cursor: pointer;
    color: var(--noir);
}

.form-elegant .btn-primary {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 1rem;
}

/* Signature */
.signature-section {
    padding: 60px 0;
    background: var(--blanc-casse);
    text-align: center;
}

.signature-content p {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--noir);
    margin-bottom: 20px;
}

.signature-content img {
    max-height: 60px;
    opacity: 0.7;
}

/* Map Élégante */
.map-elegant-simple {
    padding: 0;
    background: white;
}

.map-elegant-container {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.map-elegant-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.map-elegant-container:hover iframe {
    filter: grayscale(0%);
}

.map-elegant-address {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.map-elegant-address i {
    color: var(--terracotta);
    font-size: 1.2rem;
}

/* Social Simple */
.social-simple {
    padding: 40px 0;
    background: white;
    text-align: center;
}

.social-simple-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-simple-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--noir);
    text-decoration: none;
    transition: color 0.3s;
}

.social-simple-link i {
    font-size: 1.3rem;
    color: var(--terracotta);
}

.social-simple-link:hover {
    color: var(--terracotta);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .testimonials-grid,
    .inspirations-cards,
    .ways-grid,
    .journal-grid,
    .materials-grid,
    .showcase-row,
    .showcase-row.reverse,
    .showcase-row.triple,
    .showcase-row.duo,
    .series-grid,
    .direct-grid,
    .immersive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 30px;
        box-shadow: var(--shadow);
        gap: 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .stats-grid,
    .collection-grid,
    .craft-grid,
    .about-grid,
    .commissions-grid,
    .contact-grid,
    .atelier-grid,
    .craft-preview,
    .about-preview,
    .process-block,
    .bio-grid,
    .inspirations-grid,
    .reservation-grid,
    .presentation-grid,
    .initiation-grid,
    .acces-simple-grid,
    .ateliers,
    .espace-grid,
    .direct-grid,
    .info-simple-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content-center h1,
    .hero-atelier-outils h1,
    .hero-contact-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-propos h1 {
        font-size: 4rem;
    }
    
    .hero-propos .hero-quote {
        font-size: 1.5rem;
    }
    
    .craft-preview-content,
    .ateliers-content,
    .reservation-text {
        padding-right: 0;
    }
    
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .visites-grid,
    .contact-info,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .filters-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .editorial-grid,
    .intime-grid {
        grid-template-columns: 1fr;
    }
    
    .journee-timeline::before {
        left: 80px;
    }
    
    .timeline-moment {
        grid-template-columns: 80px 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .outil-tour {
        width: 180px;
        height: 180px;
    }
    
    .outil-four {
        width: 140px;
        height: 170px;
    }
    
    .info-simple-grid {
        max-width: 400px;
    }
    
    .form-elegant-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .hero-buttons,
    .collection-stats-mini,
    .process-tagline,
    .contact-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .process-step,
    .process-step.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step.reverse .step-number {
        text-align: left;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .workshop-title,
    .hero-content-center h1,
    .hero-atelier-outils h1,
    .hero-contact-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-atelier-outils .hero-description,
    .hero-contact-content p {
        font-size: 1.1rem;
    }
    
    .hero-propos h1 {
        font-size: 3rem;
    }
    
    .hero-propos .hero-quote {
        font-size: 1.3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .atelier-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .outil-tour,
    .outil-four,
    .outil-pinceau,
    .outil-estèque,
    .outil-ébauchoir,
    .outil-tournette {
        opacity: 0.3;
    }
    
    .collection-grid-full,
    .featured-grid,
    .detail-grid,
    .showcase-row,
    .showcase-row.reverse,
    .showcase-row.triple,
    .showcase-row.duo,
    .series-grid,
    .journal-grid,
    .materials-grid,
    .inspirations-cards,
    .clients-grid,
    .ways-grid,
    .visites-grid,
    .direct-grid,
    .immersive-grid,
    .info-simple-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .atelier-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .journee-timeline::before {
        display: none;
    }
    
    .timeline-moment {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .moment-heure {
        text-align: left;
        padding-left: 0;
    }
    
    .moment-heure::after {
        display: none;
    }
    
    .moment-content {
        padding-left: 0;
    }
    
    .ressenti-text,
    .closing-quote p,
    .poetry-text,
    .message-texte,
    .signature-content p {
        font-size: 1.5rem;
    }
    
    .map-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .map-address-card {
        padding: 15px 20px;
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .pattern-vase,
    .handprint {
        opacity: 0.3;
    }
    
    .contact-card {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .acces-simple {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .immersive-item {
        height: 300px;
    }
    
    .immersive-caption {
        font-size: 1.5rem;
    }
    
    .social-simple-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .map-elegant-address {
        left: 20px;
        right: 20px;
        border-radius: 10px;
        text-align: center;
        justify-content: center;
    }
}