/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
    /* Couleurs neutres */
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-beige: #F8F6F3;
    --color-gray: #E8E8E8;
    --color-dark-gray: #2A2825;
    --color-black: #1A1816;

    /* Accents bois */
    --color-wood-light: #D4C4A8;
    --color-wood-medium: #B8A082;
    --color-wood-dark: #8B7355;
    --color-wood-accent: #A68B6B;

    --spacing-xxl: 8rem;

    /* Typographie */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
    --font-elegant: 'EB Garamond', serif;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    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-dark-gray);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 243, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(184, 160, 130, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 8px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(184, 160, 130, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem var(--spacing-md);
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: block;
    position: relative;
    transition: var(--transition);
    z-index: 10;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.8rem;
    overflow: visible;
    border-radius: 10px;
    isolation: isolate;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Fond subtil et élégant */
.logo-background-mesh {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background:
        radial-gradient(ellipse at center, rgba(248, 246, 243, 0.6) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.logo:hover .logo-background-mesh {
    opacity: 1;
}

.logo-image {
    position: relative;
    z-index: 2;
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06));
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, filter;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
    transform: translateY(-1.5px) scale(1.02);
}


/* Bordure subtile au survol */
.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(248, 246, 243, 0.05) 100%);
    opacity: 0;
}

.logo:hover .logo-container::before {
    border-color: rgba(184, 160, 130, 0.25);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(184, 160, 130, 0.1);
}




.nav {
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    position: relative;
    padding: 0.25rem;
    background: rgba(248, 246, 243, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.65rem 0.95rem;
    color: var(--color-dark-gray);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 160, 130, 0.12) 0%, rgba(139, 115, 85, 0.08) 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 8px;
    transform: scale(0.95);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link-text {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.nav-link:hover .nav-link-text,
.nav-link.active .nav-link-text {
    color: var(--color-wood-dark);
    transform: translateY(-0.5px);
    font-weight: 500;
    letter-spacing: 0.6px;
}

.nav-link-underline {
    position: absolute;
    bottom: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--color-wood-medium), transparent);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(184, 160, 130, 0.3);
}

.nav-link:hover .nav-link-underline,
.nav-link.active .nav-link-underline {
    width: calc(100% - 1.5rem);
}

.nav-link.active .nav-link-underline {
    background: linear-gradient(90deg, transparent, var(--color-wood-dark), transparent);
    box-shadow: 0 0 8px rgba(139, 115, 85, 0.4);
    height: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    position: relative;
    z-index: 1001;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(184, 160, 130, 0.05);
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--color-dark-gray);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION PREMIUM
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    background:
        radial-gradient(ellipse 1200px 800px at top left, rgba(248, 246, 243, 0.98) 0%, transparent 60%),
        radial-gradient(ellipse 1000px 700px at bottom right, rgba(245, 243, 240, 0.98) 0%, transparent 60%),
        radial-gradient(ellipse 800px 600px at 50% 50%, rgba(212, 196, 168, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, #F8F6F3 0%, #F5F3F0 50%, #F0EDE8 100%);
    isolation: isolate;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Couches de background */
.hero-background-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-bg-layer-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(184, 160, 130, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: bgLayer1Move 40s ease-in-out infinite;
    filter: blur(40px);
}

.hero-bg-layer-2 {
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(139, 115, 85, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: bgLayer2Move 45s ease-in-out infinite;
    filter: blur(50px);
}

.hero-bg-layer-3 {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212, 196, 168, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: bgLayer3Move 35s ease-in-out infinite;
    filter: blur(35px);
}

.hero-image-main {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 120%;
    height: 130%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: grayscale(100%) blur(3px) contrast(1.1);
    animation: heroImageParallax 60s ease-in-out infinite alternate;
    mix-blend-mode: multiply;
}

.hero-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(184, 160, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 115, 85, 0.08) 0%, transparent 50%);
    animation: heroImageGlow 15s ease-in-out infinite;
}

.hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(184, 160, 130, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 115, 85, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 196, 168, 0.03) 0%, transparent 60%);
    animation: meshPulse 12s ease-in-out infinite;
    pointer-events: none;
    filter: blur(1px);
}

.hero-noise-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(139, 115, 85, 0.02) 1px, rgba(139, 115, 85, 0.02) 2px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(184, 160, 130, 0.02) 1px, rgba(184, 160, 130, 0.02) 2px);
    opacity: 0.4;
    pointer-events: none;
}

/* Éléments décoratifs */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-line-1 {
    position: absolute;
    top: 15%;
    left: 0;
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 160, 130, 0.2), transparent);
    transform: rotate(-25deg);
    transform-origin: left;
    opacity: 0.3;
    animation: lineFloat1 15s ease-in-out infinite;
}

.hero-line-2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 250px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.15), transparent);
    transform: rotate(35deg);
    transform-origin: right;
    opacity: 0.25;
    animation: lineFloat2 18s ease-in-out infinite 2s;
}

.hero-line-3 {
    position: absolute;
    top: 60%;
    left: 5%;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 196, 168, 0.15), transparent);
    transform: rotate(-15deg);
    opacity: 0.2;
    animation: lineFloat3 20s ease-in-out infinite 4s;
}

.hero-circle-1 {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(184, 160, 130, 0.1);
    border-radius: 50%;
    opacity: 0.15;
    animation: circleFloat1 20s ease-in-out infinite;
}

.hero-circle-2 {
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(139, 115, 85, 0.08);
    border-radius: 50%;
    opacity: 0.12;
    animation: circleFloat2 25s ease-in-out infinite 2s;
}

.hero-circle-3 {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212, 196, 168, 0.08);
    border-radius: 50%;
    opacity: 0.1;
    animation: circleFloat3 22s ease-in-out infinite 4s;
}

/* Container principal */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: var(--spacing-xl) 0;
}

/* Section gauche */
.hero-left {
    position: relative;
    z-index: 3;
}

.hero-number-large {
    font-family: var(--font-sans);
    font-size: clamp(8rem, 15vw, 14rem);
    font-weight: 300;
    color: rgba(184, 160, 130, 0.15);
    line-height: 0.8;
    margin-bottom: -2rem;
    letter-spacing: -0.05em;
    position: absolute;
    top: -3rem;
    left: -1rem;
    z-index: 0;
    pointer-events: none;
}

.hero-text-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero-label-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.hero-label-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-wood-medium), transparent);
}

.hero-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-wood-medium);
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-title-main {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 200;
    line-height: 0.85;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.03em;
    position: relative;
    text-shadow:
        0 0 0 rgba(0, 0, 0, 0),
        0 2px 20px rgba(184, 160, 130, 0.1),
        0 4px 40px rgba(184, 160, 130, 0.05);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    will-change: transform, text-shadow;
}

.hero-title-main:hover {
    text-shadow:
        0 0 0 rgba(0, 0, 0, 0),
        0 4px 30px rgba(184, 160, 130, 0.2),
        0 8px 60px rgba(184, 160, 130, 0.1);
    transform: translateZ(20px);
}

.hero-title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-wood-medium), transparent);
    animation: titleUnderline 1.5s ease 1s forwards;
}

.hero-title-word {
    display: block;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-title-word:hover {
    transform: translateZ(15px) rotateX(2deg);
}

.hero-word-1 {
    animation: titleWord1 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-word-2 {
    color: var(--color-wood-dark);
    font-weight: 300;
    margin-left: 3rem;
    animation: titleWord2 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-subtitle-wrapper {
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-dark-gray);
    font-style: italic;
    letter-spacing: 0.5px;
}

.hero-description-box {
    margin: var(--spacing-lg) 0;
    padding-left: var(--spacing-md);
    border-left: 2px solid rgba(184, 160, 130, 0.3);
    max-width: 550px;
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-dark-gray);
    font-weight: 300;
    opacity: 0.85;
}

.hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1.4rem 3rem;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-wood-dark), var(--color-wood-medium));
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-hero-primary:hover::before {
    left: 0;
}

.btn-hero-primary span,
.btn-hero-primary svg {
    position: relative;
    z-index: 1;
}

.btn-hero-primary svg {
    transition: transform 0.4s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(184, 160, 130, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-hero-primary:hover svg {
    transform: translateX(6px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.4rem 3rem;
    background: transparent;
    color: var(--color-black);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--color-black);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-black);
    transition: width 0.5s ease;
    z-index: 0;
}

.btn-hero-secondary:hover::before {
    width: 100%;
}

.btn-hero-secondary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-hero-secondary:hover {
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Section droite */
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 500px;
    margin-left: auto;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 0 100px rgba(184, 160, 130, 0.05),
        0 0 0 0 rgba(184, 160, 130, 0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    backdrop-filter: blur(2px) saturate(120%);
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 160, 130, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-image-container:hover .hero-image-frame {
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 40px rgba(184, 160, 130, 0.2);
}

.hero-image-container:hover .hero-image-frame::before {
    opacity: 0.5;
    /* Animation désactivée - trop de mouvement */
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(15%) contrast(1.05) brightness(0.98);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-container:hover .hero-image-inner {
    transform: scale(1.1);
}

.hero-image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%, rgba(184, 160, 130, 0.1) 100%);
    pointer-events: none;
}

.hero-image-badge {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(184, 160, 130, 0.2);
    z-index: 2;
    transition: all 0.4s ease;
}

.hero-image-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.badge-text-top {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-wood-dark);
    line-height: 1;
}

.badge-text-bottom {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.hero-image-decoration-1 {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(184, 160, 130, 0.2);
    border-radius: 8px;
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: -1;
}

.hero-image-decoration-2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(139, 115, 85, 0.15);
    border-radius: 8px;
    transform: rotate(10deg);
    pointer-events: none;
    z-index: -1;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    right: var(--spacing-lg);
    bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 3;
}

.scroll-indicator-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, var(--color-wood-medium) 0%, rgba(184, 160, 130, 0.3) 50%, transparent 100%);
    animation: scrollIndicatorLine 2.5s ease-in-out infinite;
}

.scroll-indicator-dot {
    width: 6px;
    height: 6px;
    background: var(--color-wood-medium);
    border-radius: 50%;
    animation: scrollIndicatorDot 2.5s ease-in-out infinite;
}

.scroll-indicator-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-wood-medium);
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-top: var(--spacing-xs);
}

/* Éléments flottants */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
}

.floating-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 160, 130, 0.2) 0%, transparent 70%);
    opacity: 0.2;
    animation: float1 25s ease-in-out infinite;
}

.floating-2 {
    bottom: 25%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.15) 0%, transparent 70%);
    opacity: 0.15;
    animation: float2 30s ease-in-out infinite 3s;
}

.floating-3 {
    top: 60%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 196, 168, 0.15) 0%, transparent 70%);
    opacity: 0.1;
    animation: float3 35s ease-in-out infinite 6s;
}

/* Animations */
@keyframes bgLayer1Move {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(2%, -1.5%) scale(1.02);
    }
}

@keyframes bgLayer2Move {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-2%, 2%) scale(1.03);
    }
}

@keyframes bgLayer3Move {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(1.5%, -1%) scale(1.02);
    }
}

@keyframes heroImageParallax {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(1%, 1%) scale(1.01);
    }
}

@keyframes heroImageGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes meshRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes titleUnderline {
    0% {
        width: 0;
    }

    100% {
        width: 200px;
    }
}

@keyframes lineFloat1 {

    0%,
    100% {
        transform: rotate(-25deg) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: rotate(-25deg) translateX(8px);
        opacity: 0.4;
    }
}

@keyframes lineFloat2 {

    0%,
    100% {
        transform: rotate(35deg) translateX(0);
        opacity: 0.25;
    }

    50% {
        transform: rotate(35deg) translateX(-6px);
        opacity: 0.35;
    }
}

@keyframes lineFloat3 {

    0%,
    100% {
        transform: rotate(-15deg) translateY(0);
        opacity: 0.2;
    }

    50% {
        transform: rotate(-15deg) translateY(-5px);
        opacity: 0.3;
    }
}

@keyframes circleFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translate(5px, -8px) scale(1.02);
        opacity: 0.2;
    }
}

@keyframes circleFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.12;
    }

    50% {
        transform: translate(-4px, 6px) scale(1.03);
        opacity: 0.16;
    }
}

@keyframes circleFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }

    50% {
        transform: translate(3px, -4px) scale(1.02);
        opacity: 0.14;
    }
}

@keyframes titleWord1 {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleWord2 {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollIndicatorLine {

    0%,
    100% {
        height: 80px;
        opacity: 1;
    }

    50% {
        height: 100px;
        opacity: 0.6;
    }
}

@keyframes scrollIndicatorDot {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(20px);
        opacity: 0.5;
    }
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15px, -10px) scale(1.02);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-12px, 8px) scale(1.03);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(8px, 10px) scale(1.02);
    }
}

/* Particules avancées */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: none;
    /* Désactivé - trop de mouvement */
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(184, 160, 130, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(184, 160, 130, 0.6);
    opacity: 0;
    display: none;
    /* Désactivé - trop de mouvement */
}

.hero-particle-1 {
    top: 20%;
    left: 15%;
    animation: particleFloat1 12s ease-in-out infinite;
}

.hero-particle-2 {
    top: 60%;
    right: 20%;
    animation: particleFloat2 15s ease-in-out infinite 2s;
}

.hero-particle-3 {
    bottom: 30%;
    left: 25%;
    animation: particleFloat3 18s ease-in-out infinite 4s;
}

.hero-particle-4 {
    top: 40%;
    right: 10%;
    animation: particleFloat4 14s ease-in-out infinite 1s;
}

.hero-particle-5 {
    bottom: 20%;
    right: 30%;
    animation: particleFloat5 16s ease-in-out infinite 3s;
}

/* Lignes de lumière */
.hero-light-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: none;
    /* Désactivé - trop de mouvement */
}

.light-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(184, 160, 130, 0.2), transparent);
    opacity: 0;
    filter: blur(1px);
    display: none;
    /* Désactivé - trop de mouvement */
}

.light-line-1 {
    top: 25%;
    left: -100px;
    width: 300px;
    height: 1px;
    transform: rotate(25deg);
    animation: lightLine1 8s ease-in-out infinite;
}

.light-line-2 {
    bottom: 30%;
    right: -100px;
    width: 250px;
    height: 1px;
    transform: rotate(-35deg);
    animation: lightLine2 10s ease-in-out infinite 2s;
}

.light-line-3 {
    top: 55%;
    left: -80px;
    width: 200px;
    height: 1px;
    transform: rotate(15deg);
    animation: lightLine3 9s ease-in-out infinite 4s;
}

@keyframes particleFloat1 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translate(100px, -80px) scale(1.5);
        opacity: 0.8;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(200px, -160px) scale(0);
        opacity: 0;
    }
}

@keyframes particleFloat2 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translate(-120px, 100px) scale(1.3);
        opacity: 0.8;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(-240px, 200px) scale(0);
        opacity: 0;
    }
}

@keyframes particleFloat3 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translate(80px, 120px) scale(1.4);
        opacity: 0.8;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(160px, 240px) scale(0);
        opacity: 0;
    }
}

@keyframes particleFloat4 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translate(-90px, -70px) scale(1.2);
        opacity: 0.8;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(-180px, -140px) scale(0);
        opacity: 0;
    }
}

@keyframes particleFloat5 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translate(110px, 90px) scale(1.6);
        opacity: 0.8;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(220px, 180px) scale(0);
        opacity: 0;
    }
}

@keyframes lightLine1 {
    0% {
        transform: translateX(-100px) rotate(25deg);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    50% {
        transform: translateX(calc(100vw + 100px)) rotate(25deg);
        opacity: 0.3;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translateX(calc(200vw + 100px)) rotate(25deg);
        opacity: 0;
    }
}

@keyframes lightLine2 {
    0% {
        transform: translateX(100px) rotate(-35deg);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    50% {
        transform: translateX(calc(-100vw - 100px)) rotate(-35deg);
        opacity: 0.2;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(calc(-200vw - 100px)) rotate(-35deg);
        opacity: 0;
    }
}

@keyframes lightLine3 {
    0% {
        transform: translateX(-80px) rotate(15deg);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    50% {
        transform: translateX(calc(100vw + 80px)) rotate(15deg);
        opacity: 0.2;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateX(calc(200vw + 80px)) rotate(15deg);
        opacity: 0;
    }
}

@keyframes frameGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Effets de lumière dynamiques */
.hero-dynamic-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.dynamic-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dynamic-light-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 160, 130, 0.2) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    opacity: 0.2;
    /* Animation désactivée - trop de mouvement */
}

.dynamic-light-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.15) 0%, transparent 70%);
    bottom: 25%;
    right: 15%;
    opacity: 0.15;
    /* Animation désactivée - trop de mouvement */
}

.dynamic-light-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 196, 168, 0.15) 0%, transparent 70%);
    top: 60%;
    right: 5%;
    opacity: 0.1;
    /* Animation désactivée - trop de mouvement */
}

/* Animations désactivées - trop de mouvement */

/* Grille de profondeur */
.hero-depth-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(184, 160, 130, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 160, 130, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    /* Animation désactivée - trop de mouvement */
    transform: perspective(1000px) rotateX(60deg) translateZ(-200px);
    transform-origin: center center;
}

/* Animation gridPulse désactivée - trop de mouvement */

/* Effets de distorsion */
.hero-distortion-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(184, 160, 130, 0.01) 2px, rgba(184, 160, 130, 0.01) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 115, 85, 0.01) 2px, rgba(139, 115, 85, 0.01) 4px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    /* Animation désactivée - trop de mouvement */
    mix-blend-mode: overlay;
}

/* Animation distortionWave désactivée - trop de mouvement */

/* Orbes de lumière rotatifs */
.hero-orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
    display: none;
    /* Désactivé - trop de mouvement */
}

.orb-ring-item {
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
}

.orb-ring-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 160, 130, 0.25) 0%, transparent 70%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbRingRotate1 20s linear infinite;
}

.orb-ring-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.2) 0%, transparent 70%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbRingRotate2 25s linear infinite reverse;
}

.orb-ring-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 196, 168, 0.22) 0%, transparent 70%);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: orbRingRotate3 30s linear infinite;
}

@keyframes orbRingRotate1 {
    0% {
        transform: translateX(-50%) rotate(0deg) translateX(300px) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

@keyframes orbRingRotate2 {
    0% {
        transform: translateX(-50%) rotate(0deg) translateX(300px) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

@keyframes orbRingRotate3 {
    0% {
        transform: translateY(-50%) rotate(0deg) translateX(300px) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-gray);
    border: 2px solid var(--color-dark-gray);
}

.btn-secondary:hover {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-dark-gray);
    border: 2px solid var(--color-dark-gray);
}

.btn-outline:hover {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
    font-weight: 300;
    margin-top: var(--spacing-xs);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.text-center {
    text-align: center;
}

/* ============================================
   PRESENTATION SECTION
   ============================================ */

.presentation {
    background-color: var(--color-beige);
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.presentation-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper:hover .image-placeholder {
    transform: scale(1.05);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-badge {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.image-badge span:first-child {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-wood-dark);
    line-height: 1;
}

.image-badge span:last-child {
    display: block;
    font-size: 0.75rem;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-item {
    text-align: center;
    padding: var(--spacing-md);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-wood-light) 100%);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(184, 160, 130, 0.3);
}

.value-icon {
    width: 40px;
    height: 40px;
    stroke: var(--color-wood-dark);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    stroke: var(--color-dark-gray);
    transform: rotate(5deg);
}

.value-item h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    color: var(--color-dark-gray);
    font-weight: 300;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */

.gallery-preview {
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--color-white);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-image .image-placeholder {
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image .image-placeholder {
    transform: scale(1.15);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.gallery-item:hover .gallery-hover-content {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-icon {
    width: 60px;
    height: 60px;
    stroke: var(--color-white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: var(--spacing-md);
    transform: translateY(0);
    transition: var(--transition);
    z-index: 2;
}

.gallery-caption {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-serif);
    margin-bottom: 0.25rem;
}

.gallery-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background-color: var(--color-beige);
    margin-top: 70px;
    text-align: center;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-dark-gray);
    font-weight: 300;
}

/* ============================================
   FILTERS
   ============================================ */

.filters-section {
    padding: var(--spacing-md) 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-gray);
}

.filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--color-gray);
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-dark-gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    border-color: var(--color-dark-gray);
}

/* ============================================
   GALLERY FULL
   ============================================ */

/* ============================================
   GALLERY MODERN
   ============================================ */

.filters-section {
    padding: var(--spacing-md) 0;
    background: linear-gradient(135deg, rgba(248, 246, 243, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-bottom: 1px solid rgba(184, 160, 130, 0.1);
}

.filters-modern {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn-modern {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(184, 160, 130, 0.2);
    border-radius: 25px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-dark-gray);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 160, 130, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.filter-btn-modern:hover::before,
.filter-btn-modern.active::before {
    opacity: 1;
}

.filter-btn-modern span {
    position: relative;
    z-index: 1;
}

.filter-btn-modern:hover {
    border-color: var(--color-wood-medium);
    transform: translateY(-2px);
}

.filter-btn-modern.active {
    background: linear-gradient(135deg, rgba(184, 160, 130, 0.15) 0%, rgba(139, 115, 85, 0.1) 100%);
    border-color: var(--color-wood-medium);
    color: var(--color-wood-dark);
    font-weight: 500;
}

.gallery-full {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 300px;
}

.gallery-item-modern {
    cursor: pointer;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item-modern.hidden {
    display: none;
}

.gallery-item-modern.large {
    grid-row: span 2;
}

.gallery-image-modern {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item-modern:hover .gallery-image-modern {
    transform: translateY(-8px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 16px 40px rgba(0, 0, 0, 0.08);
}

.image-placeholder-modern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8E8E8 0%, #F5F5F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-dark-gray);
    font-weight: 300;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item-modern:hover .image-placeholder-modern {
    transform: scale(1.1);
}

.gallery-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item-modern:hover .gallery-overlay-modern {
    opacity: 1;
}

.gallery-info-modern {
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item-modern:hover .gallery-info-modern {
    transform: translateY(0);
}

.gallery-title-modern {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.gallery-material-modern {
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    color: var(--color-white);
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-white);
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse>* {
    direction: ltr;
}

.about-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--color-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-card {
    padding: var(--spacing-md);
    text-align: center;
    background-color: var(--color-beige);
    border-radius: 4px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card .value-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-black);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-dark-gray);
    font-weight: 300;
    line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* ============================================
   CONTACT PREMIUM
   ============================================ */

.contact-section-premium {
    padding: var(--spacing-xxl) 0;
    background:
        radial-gradient(ellipse at top, rgba(248, 246, 243, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-white) 0%, rgba(248, 246, 243, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(184, 160, 130, 0.02) 2px, rgba(184, 160, 130, 0.02) 4px);
    pointer-events: none;
    opacity: 0.5;
}

.contact-wrapper-premium {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-intro-premium {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.contact-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-title-premium {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-description-premium {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    font-weight: 300;
    letter-spacing: 0.2px;
}

.contact-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 var(--spacing-md);
}

.contact-card-premium {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(184, 160, 130, 0.1);
}

.contact-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-wood-medium) 0%, var(--color-wood-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-card-premium:hover::before {
    transform: scaleX(1);
}

.contact-card-premium:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(184, 160, 130, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(184, 160, 130, 0.3);
}

.contact-card-inner {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: relative;
}

.contact-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(184, 160, 130, 0.1) 0%, rgba(139, 115, 85, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 160, 130, 0.2) 0%, rgba(139, 115, 85, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card-premium:hover .contact-icon-wrapper::before {
    opacity: 1;
}

.contact-card-premium:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(184, 160, 130, 0.2);
}

.contact-icon-svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-wood-dark);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
}

.contact-card-premium:hover .contact-icon-svg {
    stroke: var(--color-wood-medium);
    transform: scale(1.1);
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.3px;
}

.contact-link-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    padding: 0.75rem 1rem;
    margin: 0 -1rem;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-dark-gray);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
    border: 1px solid transparent;
}

.contact-link-premium:hover {
    background: linear-gradient(135deg, rgba(248, 246, 243, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-color: rgba(184, 160, 130, 0.2);
    transform: translateX(4px);
}

.contact-value-premium {
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--color-dark-gray);
    transition: color 0.3s ease;
}

.contact-link-premium:hover .contact-value-premium {
    color: var(--color-wood-dark);
}

.copy-icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-wood-medium);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
}

.contact-link-premium:hover .copy-icon {
    opacity: 1;
    transform: translateX(0);
}

.contact-address-premium {
    color: var(--color-dark-gray);
    font-weight: 300;
    line-height: 1.8;
    font-size: 1rem;
    letter-spacing: 0.2px;
    padding: 0.75rem 1rem;
    margin: 0 -1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(248, 246, 243, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.contact-email-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-mailto-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(184, 160, 130, 0.1) 0%, rgba(139, 115, 85, 0.08) 100%);
    border: 1px solid rgba(184, 160, 130, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
    color: var(--color-wood-dark);
}

.contact-mailto-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.contact-mailto-link:hover {
    background: linear-gradient(135deg, rgba(184, 160, 130, 0.2) 0%, rgba(139, 115, 85, 0.15) 100%);
    border-color: var(--color-wood-medium);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(184, 160, 130, 0.2);
}

.contact-mailto-link:hover svg {
    transform: translateY(-2px);
}

.map-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-light-gray);
}

.map-placeholder {
    height: 400px;
    background-color: var(--color-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--color-dark-gray);
}

.map-note {
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
    filter: brightness(1.1);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-section p {
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-webmaster {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--spacing-xs);
}

.footer-webmaster a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-webmaster a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.footer-webmaster a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-webmaster a:hover::after {
    width: 100%;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        margin: 0 auto;
    }

    .hero-number-large {
        font-size: clamp(5rem, 12vw, 10rem);
        top: -2rem;
    }

    .hero-title-main {
        font-size: clamp(3rem, 8vw, 6rem);
    }

    .hero-word-2 {
        margin-left: 2rem;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-decorative-elements {
        opacity: 0.5;
    }

    .presentation-content,
    .about-section,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-item-modern.large {
        grid-row: span 1;
    }

    .filters-modern {
        gap: 0.4rem;
    }

    .filter-btn-modern {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .contact-details-simple {
        grid-template-columns: 1fr;
    }

    .contact-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-title-premium {
        font-size: 2rem;
    }

    .contact-description-premium {
        font-size: 1rem;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .header-content {
        padding: 1rem var(--spacing-md);
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 243, 0.98) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        padding-top: 80px;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        padding: var(--spacing-lg) var(--spacing-md);
        gap: 0;
        align-items: stretch;
    }

    .nav-item {
        border-bottom: 1px solid rgba(184, 160, 130, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1.5rem var(--spacing-md);
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
    }

    .nav-link-underline {
        left: var(--spacing-md);
        transform: translateX(0);
        bottom: 1.2rem;
    }

    .nav-link:hover .nav-link-underline,
    .nav-link.active .nav-link-underline {
        width: calc(100% - 4rem);
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .hero-container {
        padding-top: 80px;
    }

    .hero-content-wrapper {
        padding: var(--spacing-md) 0;
    }

    .hero-number-large {
        font-size: clamp(4rem, 10vw, 8rem);
        top: -1.5rem;
        left: -0.5rem;
    }

    .hero-title-main {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }

    .hero-word-2 {
        margin-left: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }

    .hero-image-decoration-1,
    .hero-image-decoration-2 {
        display: none;
    }

    .hero-floating-elements {
        opacity: 0.3;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .gallery-grid,
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }

    .filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-xs);
    }

    .filter-btn {
        white-space: nowrap;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
}

/* ============================================
   STYLES ARTISTIQUES ADDITIONNELS
   ============================================ */

.section-number {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-wood-medium);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    opacity: 0.6;
}

.section-title-artistic {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.section-title-artistic .title-word {
    display: block;
}

.section-title-artistic .title-word:first-child {
    margin-left: 0;
}

.section-title-artistic .title-word:last-child {
    margin-left: 3rem;
    color: var(--color-wood-dark);
}

.presentation-decorative-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-wood-light), transparent);
    opacity: 0.3;
}

.presentation-container {
    position: relative;
}

.presentation {
    position: relative;
    background: var(--color-white);
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
    margin-bottom: var(--spacing-xxl);
}

.presentation-text-block {
    padding-top: var(--spacing-lg);
}

.section-text-large {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.section-text-small {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark-gray);
    font-weight: 300;
    opacity: 0.8;
}

.presentation-image-block {
    position: relative;
}

.image-artistic-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.image-placeholder-artistic {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(10%) contrast(1.05);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-artistic-wrapper:hover .image-placeholder-artistic {
    transform: scale(1.1);
}

.image-artistic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.image-artistic-badge {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border: 1px solid rgba(139, 115, 85, 0.2);
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-wood-dark);
    line-height: 1;
}

.badge-text {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.presentation-decorative-element {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 1px solid var(--color-wood-light);
    opacity: 0.2;
    transform: rotate(25deg);
    pointer-events: none;
}

.values-artistic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
    border-top: 1px solid var(--color-gray);
}

.value-artistic-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-wood-medium);
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.value-content {
    flex: 1;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: var(--spacing-xs);
}

.value-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-dark-gray);
    font-weight: 300;
    opacity: 0.8;
}

.gallery-decorative-line {
    position: absolute;
    top: 20%;
    right: 0;
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-wood-medium), transparent);
    transform: rotate(45deg);
    transform-origin: right;
    opacity: 0.2;
}

.gallery-preview {
    position: relative;
    background: var(--color-beige);
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.gallery-container {
    position: relative;
}

.gallery-header-artistic {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-bottom: var(--spacing-xxl);
}

.gallery-header-text {
    flex: 1;
}

.gallery-subtitle-artistic {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-dark-gray);
    font-weight: 300;
    margin-top: var(--spacing-sm);
    opacity: 0.7;
}

.gallery-grid-artistic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.gallery-item-artistic {
    position: relative;
    cursor: pointer;
}

.gallery-item-artistic.large {
    grid-column: span 2;
}

.gallery-image-artistic {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.gallery-item-artistic.large .gallery-image-artistic {
    aspect-ratio: 16/9;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item-artistic:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.gallery-item-number {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-wood-medium);
    opacity: 0.6;
    flex-shrink: 0;
}

.gallery-item-text {
    flex: 1;
}

.gallery-item-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.gallery-item-material {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-dark-gray);
    font-weight: 300;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-cta-wrapper {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn-artistic-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-black);
    transition: var(--transition);
}

.btn-artistic-link:hover {
    gap: var(--spacing-md);
    border-bottom-color: var(--color-wood-medium);
}

.btn-artistic-link svg {
    transition: transform 0.3s ease;
}

.btn-artistic-link:hover svg {
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-image-side {
        height: 400px;
    }

    .presentation-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .values-artistic {
        grid-template-columns: 1fr;
    }

    .gallery-grid-artistic {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-artistic.large {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-title .title-line.accent {
        margin-left: 1rem;
    }

    .gallery-grid-artistic {
        grid-template-columns: 1fr;
    }

    .gallery-item-artistic.large {
        grid-column: span 1;
    }

    .section-title-artistic .title-word:last-child {
        margin-left: 1.5rem;
    }
}

/* ============================================
   GLOBAL ENHANCEMENTS & ANIMATIONS
   ============================================ */

/* 1. Selection Style */
::selection {
    background-color: var(--color-wood-dark);
    color: var(--color-white);
}

/* 2. Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--color-wood-medium);
    border-radius: 5px;
    border: 2px solid var(--color-beige);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-wood-dark);
}

/* 3. Grain Texture Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opactiy='1'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* 4. Reveal on Scroll Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children */
.reveal-group .reveal-child {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-group.is-visible .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group.is-visible .reveal-child:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-group.is-visible .reveal-child:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-group.is-visible .reveal-child:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-group.is-visible .reveal-child:nth-child(4) {
    transition-delay: 0.4s;
}

/* 5. Custom Cursor (Optional - if JS added) */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-wood-dark);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
    display: none;
    /* Hidden by default until JS init */
}

.custom-cursor.active {
    width: 50px;
    height: 50px;
    background-color: rgba(184, 160, 130, 0.2);
    border-color: transparent;
}

@media (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}

/* 6. Text Enhancements */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 7. Magnetic Button Effect (class to be added) */
.magnetic-btn {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



/* ============================================
   CONTACT LAYOUT FIX
   ============================================ */

/* ============================================
   CONTACT LAYOUT FIX
   ============================================ */

/* Force grid layout with specific selector to override potential block defaults */
section.contact-section .contact-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem;
    align-items: start;
    padding-top: 2rem;
    padding-bottom: 4rem;
    width: 100%;
}

/* Form Input Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-dark-gray);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    color: var(--color-black);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-wood-medium);
    background-color: var(--color-white);
    box-shadow: 0 0 0 2px rgba(184, 160, 130, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 0;
    width: 100%;
}

/* Only stack on smaller devices (tablets/mobile) */
@media (max-width: 850px) {
    section.contact-section .contact-container {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-container {
        gap: 2rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        align-items: center;
    }
}

/* ============================================
   CONTACT STYLE (PREMIUM LINK BUTTONS)
   ============================================ */

.contact-link-copy {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-dark-gray);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-align: left;
}

.contact-link-copy:hover {
    color: var(--color-wood-dark);
}

.contact-value {
    position: relative;
    font-weight: 500;
}

.contact-value::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-wood-medium);
    transition: width 0.3s ease;
}

.contact-link-copy:hover .contact-value::after {
    width: 100%;
}

.copy-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(184, 160, 130, 0.3);
    color: var(--color-wood-medium);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.7;
}

.contact-link-copy:hover .copy-icon-wrapper {
    background-color: var(--color-wood-dark);
    border-color: var(--color-wood-dark);
    color: var(--color-white);
    transform: rotate(15deg) scale(1.1);
    opacity: 1;
}

.copy-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.copy-indicator {
    position: absolute;
    right: -70px;
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.contact-link-copy.copied .copy-indicator {
    opacity: 1;
    transform: translateX(0);
}

.contact-link-copy.copied .copy-icon-wrapper {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: white;
    transform: scale(1.1);
}