/* ============================================
   LÉO-PAUL — TAILLEUR DE PIERRE
   "La pierre se révèle"
   ============================================ */

/* --------------------------------------------
   VARIABLES CSS
   -------------------------------------------- */
:root {
    /* Palette pierre naturelle */
    --stone-dark: #2C2825;
    --stone-medium: #6B5B4F;
    --stone-warm: #8B7355;
    --stone-sand: #C9B8A5;
    --stone-light: #D4C5B5;
    --stone-cream: #F5F1EB;
    --stone-white: #FAF8F5;
    
    /* Typographie */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    
    /* Tailles fluides */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1rem + 1vw, 1.75rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 7rem);
    
    /* Espacement */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    
    /* Layout */
    --container-max: 1400px;
    --container-narrow: 900px;
    --nav-height: 80px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 600ms;
    --duration-reveal: 1000ms;
}

/* --------------------------------------------
   RESET
   -------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--stone-dark);
    background-color: var(--stone-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
address { font-style: normal; }

::selection {
    background-color: var(--stone-warm);
    color: var(--stone-white);
}

:focus-visible {
    outline: 2px solid var(--stone-warm);
    outline-offset: 3px;
}

:focus:not(:focus-visible) { outline: none; }

/* --------------------------------------------
   ACCESSIBILITÉ
   -------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    z-index: 10000;
    padding: var(--space-sm) var(--space-md);
    background: var(--stone-dark);
    color: var(--stone-cream);
    font-weight: 600;
    border-radius: 4px;
    transition: top var(--duration-fast);
}

.skip-link:focus { top: var(--space-md); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------
   TYPOGRAPHIE
   -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p + p { margin-top: 1em; }

/* --------------------------------------------
   EFFET SIGNATURE : Révélation pierre
   -------------------------------------------- */
.stone-reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: 
        opacity var(--duration-reveal) var(--ease-out),
        transform var(--duration-reveal) var(--ease-out),
        filter var(--duration-reveal) var(--ease-out);
}

.stone-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Délais séquentiels */
.stone-reveal[data-delay="100"] { transition-delay: 100ms; }
.stone-reveal[data-delay="200"] { transition-delay: 200ms; }
.stone-reveal[data-delay="300"] { transition-delay: 300ms; }
.stone-reveal[data-delay="400"] { transition-delay: 400ms; }
.stone-reveal[data-delay="500"] { transition-delay: 500ms; }
.stone-reveal[data-delay="600"] { transition-delay: 600ms; }
.stone-reveal[data-delay="700"] { transition-delay: 700ms; }
.stone-reveal[data-delay="800"] { transition-delay: 800ms; }

/* Conteneur poussière de pierre */
.stone-dust-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

#dust-canvas {
    width: 100%;
    height: 100%;
}

/* --------------------------------------------
   NAVIGATION
   -------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background-color var(--duration-base), box-shadow var(--duration-base);
}

.header--scrolled {
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 40, 37, 0.08);
}

.header--light {
    background-color: var(--stone-cream);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-svg {
    width: 150px;
    height: 50px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    fill: var(--stone-dark);
    letter-spacing: 0.08em;
}

.logo-line {
    stroke: var(--stone-warm);
    stroke-width: 1.5;
    transition: stroke-dashoffset var(--duration-slow) var(--ease-out);
}

.nav__logo:hover .logo-line {
    stroke-dashoffset: 0;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--stone-dark);
    transition: transform var(--duration-base), opacity var(--duration-fast);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--stone-dark);
    transition: color var(--duration-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--stone-warm);
    transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link--cta {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--stone-dark);
    color: var(--stone-cream);
    border-radius: 4px;
    transition: background-color var(--duration-fast), transform var(--duration-fast);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
    background-color: var(--stone-medium);
    transform: translateY(-2px);
}

/* Mobile navigation */
@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    
    .nav__menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        background-color: var(--stone-cream);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--duration-base), visibility var(--duration-base);
        z-index: 1000;
    }
    
    .nav__menu.is-open {
        opacity: 1;
        visibility: visible;
    }
    
    /* Bloquer le scroll quand le menu est ouvert */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .nav__link {
        font-family: var(--font-display);
        font-size: var(--text-2xl);
    }
    
    .nav__link--cta {
        font-size: var(--text-lg);
        font-family: var(--font-body);
    }
}

/* --------------------------------------------
   HERO
   -------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background-color: var(--stone-cream);
}

.hero__stone-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
}

.hero__texture-svg {
    width: 100%;
    height: 100%;
}

.hero__chisel-marks {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.chisel-svg {
    width: 100%;
    height: 100%;
}

.chisel-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: chiselReveal 3s ease-out forwards;
}

@keyframes chiselReveal {
    to { stroke-dashoffset: 0; }
}

.chisel-line:nth-child(2) { animation-delay: 0.2s; }
.chisel-line:nth-child(3) { animation-delay: 0.4s; }
.chisel-line:nth-child(4) { animation-delay: 0.6s; }
.chisel-line:nth-child(5) { animation-delay: 0.8s; }
.chisel-line:nth-child(6) { animation-delay: 1s; }
.chisel-line:nth-child(7) { animation-delay: 1.2s; }
.chisel-line:nth-child(8) { animation-delay: 1.4s; }

.hero__content {
    position: relative;
    z-index: 2;
    padding: var(--space-3xl) var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
}

.hero__epigraph {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone-medium);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.hero__epigraph-symbol {
    font-size: 0.6em;
    color: var(--stone-warm);
}

.hero__epigraph-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15em;
}

.hero__title {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em;
    font-size: var(--text-5xl);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: var(--space-xl);
}

.hero__title-word {
    display: inline-block;
}

.hero__title-word--main {
    font-style: italic;
}

.hero__title-word--accent {
    color: var(--stone-warm);
}

.hero__quote {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--stone-medium);
    margin-bottom: var(--space-2xl);
    padding-left: var(--space-md);
    border-left: 2px solid var(--stone-sand);
}

.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--stone-warm), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

.hero__scroll-text {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-medium);
}

.hero__image-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
}

/* Cadre sculptural premium */
.hero__frame {
    position: relative;
    padding: 20px;
    background: linear-gradient(
        145deg,
        #e8ddd0 0%,
        #d9cdbf 15%,
        #cfc2b3 30%,
        #d4c7b8 50%,
        #cfc2b3 70%,
        #d9cdbf 85%,
        #e8ddd0 100%
    );
    border-radius: 6px;
    box-shadow: 
        /* Ombre externe profonde */
        0 50px 100px -20px rgba(44, 40, 37, 0.35),
        0 30px 60px -10px rgba(44, 40, 37, 0.25),
        /* Ombre douce diffuse */
        0 10px 20px rgba(44, 40, 37, 0.15),
        /* Relief du cadre - lumière haute */
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 1px 0 0 rgba(255, 255, 255, 0.4),
        /* Relief du cadre - ombre basse */
        inset 0 -1px 0 rgba(107, 91, 79, 0.2),
        inset -1px 0 0 rgba(107, 91, 79, 0.15);
}

.hero__frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(139, 115, 85, 0.15);
    border-radius: 4px;
    pointer-events: none;
}

.hero__frame::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(139, 115, 85, 0.08);
    box-shadow: inset 0 0 20px rgba(107, 91, 79, 0.05);
    border-radius: 3px;
    pointer-events: none;
}

/* Cadre intérieur avec biseau */
.hero__frame-inner {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 
        /* Biseau intérieur */
        inset 0 2px 4px rgba(44, 40, 37, 0.15),
        inset 0 -1px 2px rgba(255, 255, 255, 0.3),
        /* Ombre portée de l'image */
        0 4px 12px rgba(44, 40, 37, 0.2);
}

.hero__frame-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(107, 91, 79, 0.2) 100%
    ) 1;
    pointer-events: none;
    z-index: 10;
}

/* Coins ornementaux sculptés */
.hero__frame-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 5;
}

.hero__frame-corner::before,
.hero__frame-corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #c4b5a4 0%, #b8a896 100%);
}

.hero__frame-corner--tl {
    top: 4px;
    left: 4px;
}
.hero__frame-corner--tl::before {
    width: 16px;
    height: 2px;
    top: 4px;
    left: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.hero__frame-corner--tl::after {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 4px;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.4);
}

.hero__frame-corner--tr {
    top: 4px;
    right: 4px;
}
.hero__frame-corner--tr::before {
    width: 16px;
    height: 2px;
    top: 4px;
    right: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.hero__frame-corner--tr::after {
    width: 2px;
    height: 16px;
    top: 4px;
    right: 4px;
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.4);
}

.hero__frame-corner--bl {
    bottom: 4px;
    left: 4px;
}
.hero__frame-corner--bl::before {
    width: 16px;
    height: 2px;
    bottom: 4px;
    left: 4px;
    box-shadow: 0 -1px 0 rgba(107, 91, 79, 0.2);
}
.hero__frame-corner--bl::after {
    width: 2px;
    height: 16px;
    bottom: 4px;
    left: 4px;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.3);
}

.hero__frame-corner--br {
    bottom: 4px;
    right: 4px;
}
.hero__frame-corner--br::before {
    width: 16px;
    height: 2px;
    bottom: 4px;
    right: 4px;
    box-shadow: 0 -1px 0 rgba(107, 91, 79, 0.2);
}
.hero__frame-corner--br::after {
    width: 2px;
    height: 16px;
    bottom: 4px;
    right: 4px;
    box-shadow: -1px 0 0 rgba(107, 91, 79, 0.15);
}

/* Signature artisan */
.hero__frame-signature {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone-medium);
    opacity: 0.6;
    white-space: nowrap;
}

.hero__placeholder-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(44, 40, 37, 0.15);
}

.hero__image {
    display: block;
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
    filter: contrast(1.02) saturate(0.95);
}

.hero__frame:hover .hero__image {
    transform: scale(1.015);
    filter: contrast(1.05) saturate(1);
}

.hero__frame:hover {
    box-shadow: 
        0 60px 120px -20px rgba(44, 40, 37, 0.4),
        0 35px 70px -10px rgba(44, 40, 37, 0.28),
        0 12px 24px rgba(44, 40, 37, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 1px 0 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(107, 91, 79, 0.22),
        inset -1px 0 0 rgba(107, 91, 79, 0.17);
    transition: box-shadow 0.4s ease;
}

.hero__frame {
    transition: box-shadow 0.4s ease;
}

.hero__image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 8px 30px rgba(44, 40, 37, 0.25),
        0 0 0 8px var(--stone-light),
        0 0 0 9px rgba(139, 115, 85, 0.2);
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .hero__content {
        padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-xl);
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .hero__epigraph { justify-content: center; }
    .hero__title { justify-content: center; }
    .hero__quote { 
        border-left: none; 
        padding-left: 0;
        text-align: center;
    }
    .hero__scroll { align-items: center; }
    
    .hero__image-container {
        padding: var(--space-lg);
    }
    
    .hero__frame {
        padding: 16px;
    }
    
    .hero__frame-signature {
        bottom: -28px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero__title { font-size: var(--text-3xl); }
    
    .hero__frame {
        padding: 12px;
    }
    
    .hero__frame-corner {
        width: 18px;
        height: 18px;
    }
    
    .hero__frame-corner::before {
        width: 12px !important;
    }
    
    .hero__frame-corner::after {
        height: 12px !important;
    }
    
    .hero__frame-signature {
        bottom: -24px;
        font-size: 9px;
        letter-spacing: 0.15em;
    }
}

/* --------------------------------------------
   COMPOSANT RÉUTILISABLE : CADRE PIERRE
   -------------------------------------------- */
.stone-frame {
    position: relative;
    padding: 14px;
    background: linear-gradient(
        145deg,
        #e8ddd0 0%,
        #d9cdbf 15%,
        #cfc2b3 30%,
        #d4c7b8 50%,
        #cfc2b3 70%,
        #d9cdbf 85%,
        #e8ddd0 100%
    );
    border-radius: 5px;
    box-shadow: 
        0 30px 60px -15px rgba(44, 40, 37, 0.3),
        0 15px 35px -5px rgba(44, 40, 37, 0.2),
        0 5px 15px rgba(44, 40, 37, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 1px 0 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(107, 91, 79, 0.18),
        inset -1px 0 0 rgba(107, 91, 79, 0.12);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    overflow: hidden;
}

.stone-frame::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(139, 115, 85, 0.12);
    border-radius: 3px;
    pointer-events: none;
}

.stone-frame::after {
    content: '';
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(139, 115, 85, 0.06);
    box-shadow: inset 0 0 15px rgba(107, 91, 79, 0.04);
    border-radius: 2px;
    pointer-events: none;
}

.stone-frame:hover {
    box-shadow: 
        0 40px 80px -15px rgba(44, 40, 37, 0.35),
        0 20px 45px -5px rgba(44, 40, 37, 0.25),
        0 8px 20px rgba(44, 40, 37, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 1px 0 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(107, 91, 79, 0.2),
        inset -1px 0 0 rgba(107, 91, 79, 0.15);
    transform: translateY(-2px);
}

/* Coins ornementaux pour stone-frame */
.stone-frame__corner {
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 5;
}

.stone-frame__corner::before,
.stone-frame__corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #c4b5a4 0%, #b8a896 100%);
}

.stone-frame__corner--tl { top: 3px; left: 3px; }
.stone-frame__corner--tl::before { width: 12px; height: 2px; top: 3px; left: 3px; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35); }
.stone-frame__corner--tl::after { width: 2px; height: 12px; top: 3px; left: 3px; box-shadow: 1px 0 0 rgba(255, 255, 255, 0.35); }

.stone-frame__corner--tr { top: 3px; right: 3px; }
.stone-frame__corner--tr::before { width: 12px; height: 2px; top: 3px; right: 3px; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35); }
.stone-frame__corner--tr::after { width: 2px; height: 12px; top: 3px; right: 3px; box-shadow: -1px 0 0 rgba(255, 255, 255, 0.35); }

.stone-frame__corner--bl { bottom: 3px; left: 3px; }
.stone-frame__corner--bl::before { width: 12px; height: 2px; bottom: 3px; left: 3px; box-shadow: 0 -1px 0 rgba(107, 91, 79, 0.15); }
.stone-frame__corner--bl::after { width: 2px; height: 12px; bottom: 3px; left: 3px; box-shadow: 1px 0 0 rgba(255, 255, 255, 0.25); }

.stone-frame__corner--br { bottom: 3px; right: 3px; }
.stone-frame__corner--br::before { width: 12px; height: 2px; bottom: 3px; right: 3px; box-shadow: 0 -1px 0 rgba(107, 91, 79, 0.15); }
.stone-frame__corner--br::after { width: 2px; height: 12px; bottom: 3px; right: 3px; box-shadow: -1px 0 0 rgba(107, 91, 79, 0.12); }

/* Image dans le cadre */
.stone-frame__inner {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 3px rgba(44, 40, 37, 0.12),
        inset 0 -1px 2px rgba(255, 255, 255, 0.25),
        0 3px 8px rgba(44, 40, 37, 0.15);
}

.stone-frame__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(107, 91, 79, 0.15) 100%) 1;
    pointer-events: none;
    z-index: 10;
}

.stone-frame__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s ease;
    filter: contrast(1.02) saturate(0.95);
}

.stone-frame:hover .stone-frame__image {
    transform: scale(1.02);
    filter: contrast(1.04) saturate(1);
}

/* Placeholder SVG dans le cadre */
.stone-frame__placeholder {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1px;
}

/* Image dans le cadre aperçu */
.apercu__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1px;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
    filter: saturate(0.95) contrast(1.02);
}

.apercu__item:hover .apercu__image {
    transform: scale(1.04);
    filter: saturate(1) contrast(1.05);
}

/* Variantes de taille */
.stone-frame--sm { padding: 10px; }
.stone-frame--sm::before { inset: 4px; }
.stone-frame--sm::after { inset: 8px; }

.stone-frame--lg { padding: 18px; }
.stone-frame--lg::before { inset: 8px; }
.stone-frame--lg::after { inset: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .stone-frame { padding: 10px; }
    .stone-frame::before { inset: 4px; }
    .stone-frame::after { inset: 8px; }
    .stone-frame__corner { width: 14px; height: 14px; }
    .stone-frame__corner::before { width: 10px !important; }
    .stone-frame__corner::after { height: 10px !important; }
}

/* --------------------------------------------
   SECTION GESTE
   -------------------------------------------- */
.geste {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--stone-white);
}

.geste__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.geste__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.geste__chapter {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--stone-sand);
    margin-bottom: var(--space-sm);
}

.geste__title {
    font-size: var(--text-3xl);
    color: var(--stone-dark);
}

.geste__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.geste__text {
    max-width: 550px;
}

.geste__intro {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--stone-dark);
    margin-bottom: var(--space-md);
}

.geste__valeurs {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.valeur {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.valeur__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.valeur__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--stone-dark);
}

.valeur__text {
    font-size: var(--text-sm);
    color: var(--stone-medium);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .geste__content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .geste__text { max-width: 100%; }
}

@media (max-width: 480px) {
    .geste {
        padding: var(--space-xl) var(--space-md);
    }
    
    .geste__valeurs {
        gap: var(--space-md);
    }
    
    .valeur {
        padding: var(--space-md);
    }
}

/* --------------------------------------------
   SECTION SAVOIR-FAIRE
   -------------------------------------------- */
.savoirfaire {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--stone-cream);
}

.savoirfaire__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.savoirfaire__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.savoirfaire__chapter {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--stone-sand);
    margin-bottom: var(--space-sm);
}

.savoirfaire__title {
    font-size: var(--text-3xl);
    color: var(--stone-dark);
}

.savoirfaire__grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.metier {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.metier--reverse {
    grid-template-columns: 1fr 280px;
}

.metier--reverse .metier__bloc {
    order: 2;
}

.metier--reverse .metier__content {
    order: 1;
    text-align: right;
}

.metier__bloc {
    background-color: var(--stone-light);
    border-radius: 8px;
    padding: var(--space-md);
    transition: transform var(--duration-base) var(--ease-out);
    overflow: hidden;
}

.metier:hover .metier__bloc {
    transform: scale(1.02);
}

.metier__illustration {
    width: 100%;
    height: auto;
}

.metier__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.metier:hover .metier__image {
    transform: scale(1.05);
}

.metier__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--stone-dark);
}

.metier__description {
    color: var(--stone-medium);
    line-height: 1.7;
}

.savoirfaire__more {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background-color: var(--stone-light);
    border-radius: 8px;
}

.savoirfaire__also {
    color: var(--stone-medium);
}

.savoirfaire__also strong {
    color: var(--stone-dark);
}

@media (max-width: 768px) {
    .metier,
    .metier--reverse {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .metier--reverse .metier__bloc,
    .metier--reverse .metier__content {
        order: unset;
        text-align: left;
    }
    
    .metier__bloc {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .savoirfaire {
        padding: var(--space-xl) var(--space-md);
    }
    
    .savoirfaire__also {
        padding: var(--space-md);
    }
    
    .metier__bloc {
        max-width: 250px;
    }
}

/* --------------------------------------------
   SECTION PRESTATIONS
   -------------------------------------------- */
.prestations {
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(180deg, var(--stone-white) 0%, var(--stone-cream) 100%);
    position: relative;
}

.prestations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--stone-sand) 0%, transparent 100%);
}

.prestations__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.prestations__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.prestations__chapter {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--stone-sand);
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.prestations__title {
    font-size: var(--text-3xl);
    color: var(--stone-dark);
    margin-bottom: var(--space-sm);
}

.prestations__intro {
    font-size: var(--text-lg);
    color: var(--stone-medium);
    max-width: 500px;
    margin: 0 auto;
}

.prestations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.prestation {
    background-color: var(--stone-white);
    border-radius: 12px;
    padding: var(--space-xl);
    box-shadow: 
        0 4px 20px rgba(44, 40, 37, 0.06),
        0 1px 3px rgba(44, 40, 37, 0.08);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: 
        transform var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out);
}

.prestation:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 30px rgba(44, 40, 37, 0.1),
        0 2px 6px rgba(44, 40, 37, 0.08);
}

.prestation__icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
}

.prestation__icon svg {
    width: 100%;
    height: 100%;
}

.prestation__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--stone-dark);
    margin-bottom: var(--space-sm);
}

.prestation__description {
    font-size: var(--text-base);
    color: var(--stone-medium);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.prestation__liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prestation__liste li {
    position: relative;
    padding-left: var(--space-md);
    font-size: var(--text-sm);
    color: var(--stone-medium);
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.prestation__liste li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--stone-sand);
    font-size: 8px;
    top: 5px;
}

/* Pour qui */
.prestations__pour-qui {
    background-color: var(--stone-light);
    border-radius: 12px;
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.prestations__subtitle {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--stone-dark);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.prestations__clients {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.client-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
}

.client-type__icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.client-type__label {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--stone-dark);
}

.client-type__detail {
    font-size: var(--text-sm);
    color: var(--stone-medium);
}

/* Process */
.prestations__process {
    background-color: var(--stone-white);
    border-radius: 12px;
    padding: var(--space-xl);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--stone-sand) 0%, 
        var(--stone-sand) 25%, 
        var(--stone-cream) 50%,
        var(--stone-sand) 75%,
        var(--stone-sand) 100%
    );
    opacity: 0.4;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--stone-dark);
    color: var(--stone-cream);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.process-step__content {
    max-width: 180px;
}

.process-step__content strong {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-base);
    color: var(--stone-dark);
    margin-bottom: var(--space-xs);
}

.process-step__content p {
    font-size: var(--text-sm);
    color: var(--stone-medium);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Prestations */
@media (max-width: 900px) {
    .prestations__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .prestations__clients {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        gap: var(--space-md);
    }
    
    .process-step__number {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .process-step__content {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .prestations {
        padding: var(--space-xl) var(--space-md);
    }
    
    .prestation {
        padding: var(--space-lg);
    }
    
    .prestations__pour-qui,
    .prestations__process {
        padding: var(--space-lg);
    }
}

/* --------------------------------------------
   PAGE PRESTATIONS - Blocs Sculptés Premium
   -------------------------------------------- */
.blocs-sculptes {
    padding: var(--space-3xl) var(--space-lg);
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(212, 197, 181, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(196, 165, 116, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--stone-cream) 0%, var(--stone-white) 100%);
}

.blocs-sculptes__container {
    max-width: 1200px;
    margin: 0 auto;
}

.blocs-sculptes__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: stretch;
}

/* Bloc sculpté - Structure principale */
.bloc-sculpte {
    position: relative;
}

.bloc-sculpte__cadre {
    position: relative;
    height: 100%;
    background: 
        linear-gradient(145deg, 
            rgba(255, 255, 255, 0.9) 0%, 
            rgba(245, 240, 235, 0.95) 50%,
            rgba(235, 228, 218, 0.9) 100%
        );
    border-radius: 6px;
    padding: 3px;
    box-shadow:
        /* Ombre portée principale */
        0 25px 50px -12px rgba(44, 40, 37, 0.15),
        /* Ombre douce externe */
        0 8px 24px -4px rgba(44, 40, 37, 0.1),
        /* Lumière intérieure haute */
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        /* Ombre intérieure basse */
        inset 0 -1px 0 rgba(139, 115, 85, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bloc-sculpte:hover .bloc-sculpte__cadre {
    transform: translateY(-8px);
    box-shadow:
        0 35px 60px -15px rgba(44, 40, 37, 0.2),
        0 15px 35px -5px rgba(44, 40, 37, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(139, 115, 85, 0.08);
}

/* Bordure ciselée */
.bloc-sculpte__bordure {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.bloc-sculpte:hover .bloc-sculpte__bordure {
    border-color: rgba(139, 115, 85, 0.35);
}

/* Coins ornementaux */
.bloc-sculpte__coin {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
}

.bloc-sculpte__coin::before,
.bloc-sculpte__coin::after {
    content: '';
    position: absolute;
    background: var(--stone-sand);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bloc-sculpte__coin--tl { top: 12px; left: 12px; }
.bloc-sculpte__coin--tr { top: 12px; right: 12px; }
.bloc-sculpte__coin--bl { bottom: 12px; left: 12px; }
.bloc-sculpte__coin--br { bottom: 12px; right: 12px; }

/* Lignes des coins */
.bloc-sculpte__coin--tl::before,
.bloc-sculpte__coin--tr::before,
.bloc-sculpte__coin--bl::before,
.bloc-sculpte__coin--br::before {
    width: 16px;
    height: 1px;
    top: 0;
}

.bloc-sculpte__coin--tl::after,
.bloc-sculpte__coin--tr::after,
.bloc-sculpte__coin--bl::after,
.bloc-sculpte__coin--br::after {
    width: 1px;
    height: 16px;
    left: 0;
}

.bloc-sculpte__coin--tl::before,
.bloc-sculpte__coin--tl::after { left: 0; top: 0; }
.bloc-sculpte__coin--tr::before { right: 0; left: auto; }
.bloc-sculpte__coin--tr::after { right: 0; left: auto; }
.bloc-sculpte__coin--bl::before { bottom: 0; top: auto; }
.bloc-sculpte__coin--bl::after { bottom: 0; top: auto; }
.bloc-sculpte__coin--br::before { right: 0; left: auto; bottom: 0; top: auto; }
.bloc-sculpte__coin--br::after { right: 0; left: auto; bottom: 0; top: auto; }

/* Hover coins */
.bloc-sculpte:hover .bloc-sculpte__coin::before {
    width: 24px;
    background: var(--stone-dark);
}
.bloc-sculpte:hover .bloc-sculpte__coin::after {
    height: 24px;
    background: var(--stone-dark);
}

/* Contenu intérieur */
.bloc-sculpte__inner {
    position: relative;
    padding: var(--space-xl);
    z-index: 1;
}

/* Header avec numéro et marque */
.bloc-sculpte__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.bloc-sculpte__numero {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--stone-sand);
    opacity: 0.5;
    line-height: 1;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
}

.bloc-sculpte:hover .bloc-sculpte__numero {
    opacity: 0.8;
    color: var(--stone-dark);
}

.bloc-sculpte__marque {
    width: 32px;
    height: 32px;
    color: var(--stone-sand);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.bloc-sculpte:hover .bloc-sculpte__marque {
    opacity: 1;
    color: var(--stone-dark);
    transform: rotate(15deg);
}

/* Titre et accroche */
.bloc-sculpte__titre {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--stone-dark);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
}

.bloc-sculpte__accroche {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-style: italic;
    color: var(--stone-medium);
    margin-bottom: var(--space-md);
}

/* Séparation ornementale */
.bloc-sculpte__separation {
    position: relative;
    height: 1px;
    margin: var(--space-lg) 0;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--stone-sand) 20%,
        var(--stone-sand) 80%,
        transparent 100%
    );
    opacity: 0.4;
}

.bloc-sculpte__separation::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: var(--stone-sand);
    background: var(--stone-white);
    padding: 0 8px;
}

/* Description */
.bloc-sculpte__description {
    font-size: var(--text-sm);
    color: var(--stone-medium);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* Liste des prestations */
.bloc-sculpte__liste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.bloc-sculpte__liste li {
    position: relative;
    padding-left: var(--space-md);
    font-size: var(--text-sm);
    color: var(--stone-dark);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.bloc-sculpte__liste li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 1px;
    background: var(--stone-sand);
    transition: all 0.3s ease;
}

.bloc-sculpte:hover .bloc-sculpte__liste li::before {
    width: 10px;
    background: var(--stone-dark);
}

/* Signature */
.bloc-sculpte__signature {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-style: italic;
    color: var(--stone-sand);
    opacity: 0.4;
    letter-spacing: 0.15em;
    transition: opacity 0.4s ease;
}

.bloc-sculpte:hover .bloc-sculpte__signature {
    opacity: 0.7;
}

/* Variante accent (bloc central) */
.bloc-sculpte--accent .bloc-sculpte__cadre {
    background: 
        linear-gradient(145deg, 
            rgba(44, 40, 37, 0.95) 0%, 
            rgba(55, 50, 45, 0.97) 50%,
            rgba(44, 40, 37, 0.95) 100%
        );
    box-shadow:
        0 25px 50px -12px rgba(44, 40, 37, 0.3),
        0 8px 24px -4px rgba(44, 40, 37, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.bloc-sculpte--accent:hover .bloc-sculpte__cadre {
    box-shadow:
        0 35px 60px -15px rgba(44, 40, 37, 0.4),
        0 15px 35px -5px rgba(44, 40, 37, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.bloc-sculpte--accent .bloc-sculpte__bordure {
    border-color: rgba(196, 165, 116, 0.3);
}

.bloc-sculpte--accent:hover .bloc-sculpte__bordure {
    border-color: rgba(196, 165, 116, 0.5);
}

.bloc-sculpte--accent .bloc-sculpte__coin::before,
.bloc-sculpte--accent .bloc-sculpte__coin::after {
    background: var(--stone-sand);
}

.bloc-sculpte--accent:hover .bloc-sculpte__coin::before,
.bloc-sculpte--accent:hover .bloc-sculpte__coin::after {
    background: var(--stone-cream);
}

.bloc-sculpte--accent .bloc-sculpte__numero {
    color: var(--stone-sand);
    opacity: 0.4;
}

.bloc-sculpte--accent:hover .bloc-sculpte__numero {
    color: var(--stone-cream);
    opacity: 0.7;
}

.bloc-sculpte--accent .bloc-sculpte__marque {
    color: var(--stone-sand);
}

.bloc-sculpte--accent:hover .bloc-sculpte__marque {
    color: var(--stone-cream);
}

.bloc-sculpte--accent .bloc-sculpte__titre {
    color: var(--stone-cream);
}

.bloc-sculpte--accent .bloc-sculpte__accroche {
    color: var(--stone-sand);
}

.bloc-sculpte--accent .bloc-sculpte__separation {
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--stone-sand) 20%,
        var(--stone-sand) 80%,
        transparent 100%
    );
    opacity: 0.3;
}

.bloc-sculpte--accent .bloc-sculpte__separation::before {
    color: var(--stone-sand);
    background: var(--stone-dark);
}

.bloc-sculpte--accent .bloc-sculpte__description {
    color: rgba(212, 197, 181, 0.8);
}

.bloc-sculpte--accent .bloc-sculpte__liste li {
    color: var(--stone-cream);
}

.bloc-sculpte--accent .bloc-sculpte__liste li::before {
    background: var(--stone-sand);
}

.bloc-sculpte--accent:hover .bloc-sculpte__liste li::before {
    background: var(--stone-cream);
}

.bloc-sculpte--accent .bloc-sculpte__signature {
    color: var(--stone-sand);
}

/* Citation */
.blocs-sculptes__citation {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0 0;
    padding: var(--space-xl) 0;
}

.citation__ornement {
    font-size: 12px;
    color: var(--stone-sand);
    opacity: 0.6;
}

.blocs-sculptes__citation p {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--stone-dark);
    margin: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .blocs-sculptes__row {
        gap: var(--space-lg);
    }
    
    .bloc-sculpte__inner {
        padding: var(--space-lg);
    }
    
    .bloc-sculpte__titre {
        font-size: var(--text-xl);
    }
}

@media (max-width: 900px) {
    .blocs-sculptes__row {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .blocs-sculptes {
        padding: var(--space-xl) var(--space-md);
    }
    
    .bloc-sculpte__inner {
        padding: var(--space-lg);
    }
    
    .bloc-sculpte__numero {
        font-size: 2rem;
    }
    
    .blocs-sculptes__citation {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .blocs-sculptes__citation p {
        font-size: var(--text-lg);
    }
    
    .citation__ornement--gauche,
    .citation__ornement--droite {
        display: none;
    }
}

@media (max-width: 480px) {
    .bloc-sculpte__header {
        margin-bottom: var(--space-md);
    }
    
    .bloc-sculpte__coin {
        width: 16px;
        height: 16px;
    }
    
    .bloc-sculpte__coin--tl { top: 10px; left: 10px; }
    .bloc-sculpte__coin--tr { top: 10px; right: 10px; }
    .bloc-sculpte__coin--bl { bottom: 10px; left: 10px; }
    .bloc-sculpte__coin--br { bottom: 10px; right: 10px; }
    
    .bloc-sculpte__coin::before { width: 12px !important; }
    .bloc-sculpte__coin::after { height: 12px !important; }
}

/* --------------------------------------------
   PAGE PRESTATIONS - Styles spécifiques
   -------------------------------------------- */
.prestations--page {
    padding-top: var(--space-xl);
}

.prestations--page .prestations__grid {
    margin-bottom: var(--space-3xl);
}

.prestation--featured {
    padding: var(--space-2xl);
}

.prestation--featured .prestation__icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
}

.prestation--featured .prestation__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.prestation--featured .prestation__description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
}

.prestation--featured .prestation__liste li {
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
}

/* Section Techniques */
/* ============================================
   TECHNIQUES PREMIUM - Panneaux Gravés
   ============================================ */

.techniques-premium {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--stone-light);
    position: relative;
}

.techniques-premium__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* En-tête avec ornements */
.techniques-premium__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.header-ornement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.header-ornement__line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--stone-sand),
        transparent
    );
}

.header-ornement__losange,
.header-ornement__croix {
    color: var(--stone-sand);
    font-size: var(--text-sm);
    opacity: 0.7;
}

.techniques-premium__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--stone-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.techniques-premium__intro {
    font-size: var(--text-lg);
    color: var(--stone-medium);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.techniques-premium__footer {
    margin-top: var(--space-2xl);
}

/* Grille des panneaux */
.panneaux-graves {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* Panneau individuel */
.panneau-grave {
    position: relative;
}

.panneau-grave__cadre {
    position: relative;
    background: linear-gradient(
        145deg,
        var(--stone-white) 0%,
        var(--stone-cream) 50%,
        var(--stone-white) 100%
    );
    padding: var(--space-xl);
    height: 100%;
    box-shadow:
        0 2px 8px rgba(44, 40, 37, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(44, 40, 37, 0.05);
    transition: all var(--duration-base) var(--ease-out);
}

.panneau-grave:hover .panneau-grave__cadre {
    box-shadow:
        0 8px 24px rgba(44, 40, 37, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(44, 40, 37, 0.05);
    transform: translateY(-4px);
}

/* Bordure gravée SVG */
.panneau-grave__bordure {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    pointer-events: none;
    color: var(--stone-sand);
    opacity: 0.4;
}

.bordure-svg {
    width: 100%;
    height: 100%;
}

/* Contenu intérieur */
.panneau-grave__inner {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.panneau-grave__icone {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    color: var(--stone-sand);
    transition: transform var(--duration-base) var(--ease-out);
}

.panneau-grave:hover .panneau-grave__icone {
    transform: scale(1.05);
}

.panneau-grave__icone svg {
    width: 100%;
    height: 100%;
}

.panneau-grave__titre {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--stone-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.01em;
}

.panneau-grave__separation {
    width: 40px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--stone-sand),
        transparent
    );
    margin: 0 auto var(--space-md);
}

.panneau-grave__texte {
    font-size: var(--text-sm);
    color: var(--stone-medium);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.panneau-grave__details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.panneau-grave__details li {
    font-size: var(--text-xs);
    color: var(--stone-sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid rgba(139, 115, 85, 0.2);
    background: rgba(139, 115, 85, 0.03);
}

/* Marque d'artisan (chiffre romain) */
.panneau-grave__marque {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-family: var(--font-display);
    font-size: var(--text-xs);
    color: var(--stone-sand);
    opacity: 0.4;
    letter-spacing: 0.05em;
}

/* Responsive Techniques */
@media (max-width: 1024px) {
    .panneaux-graves {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .techniques-premium {
        padding: var(--space-xl) var(--space-md);
    }
    
    .panneaux-graves {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .panneau-grave__cadre {
        padding: var(--space-lg);
    }
    
    .panneau-grave__icone {
        width: 48px;
        height: 48px;
    }
    
    .header-ornement__line {
        width: 40px;
    }
}

/* ============================================
   TRIPTYQUE - Pour Qui Premium
   ============================================ */

.triptyque {
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(
        180deg,
        var(--stone-cream) 0%,
        var(--stone-light) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Texture de fond subtile */
.triptyque::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B7355' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.triptyque__container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

/* En-tête */
.triptyque__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.triptyque__surtitre {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--stone-sand);
    margin-bottom: var(--space-sm);
}

.triptyque__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--stone-dark);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.triptyque__intro {
    font-size: var(--text-lg);
    color: var(--stone-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Les trois volets */
.triptyque__volets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
}

/* Volet individuel */
.volet {
    position: relative;
}

.volet__cadre {
    position: relative;
    height: 100%;
    background: var(--stone-white);
    padding: var(--space-xl) var(--space-lg);
    border: 1px solid rgba(139, 115, 85, 0.15);
    transition: all var(--duration-slow) var(--ease-out);
    display: flex;
    flex-direction: column;
}

/* Ombre et relief au survol */
.volet:hover .volet__cadre {
    box-shadow: 0 12px 40px rgba(44, 40, 37, 0.12);
    z-index: 2;
}

/* Volet central - effet de panneau ouvert */
.volet--central .volet__cadre {
    background: linear-gradient(
        145deg,
        var(--stone-dark) 0%,
        #3a342e 50%,
        var(--stone-dark) 100%
    );
    border-color: var(--stone-dark);
    box-shadow:
        0 8px 32px rgba(44, 40, 37, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
    z-index: 1;
}

.volet--central:hover .volet__cadre {
    transform: scale(1.04);
    box-shadow: 0 16px 48px rgba(44, 40, 37, 0.3);
}

.volet--central .volet__titre,
.volet--central .volet__description,
.volet--central .volet__puce {
    color: var(--stone-cream);
}

.volet--central .volet__liste li {
    color: rgba(212, 197, 181, 0.9);
}

.volet--central .volet__symbole {
    color: var(--stone-sand);
}

.volet--central .volet__filet {
    background: linear-gradient(
        90deg,
        transparent,
        var(--stone-sand),
        transparent
    );
}

/* Charnières */
.volet__charniere {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 80px;
    z-index: 3;
}

.volet__charniere--gauche {
    left: -4px;
}

.volet__charniere--droite {
    right: -4px;
}

.volet__charniere span {
    display: block;
    width: 8px;
    height: 24px;
    background: linear-gradient(
        180deg,
        var(--stone-sand) 0%,
        #a08060 50%,
        var(--stone-sand) 100%
    );
    border-radius: 2px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(44, 40, 37, 0.2);
}

/* Contenu du volet */
.volet__inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.volet__symbole {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--stone-sand);
    transition: transform var(--duration-base) var(--ease-out);
}

.volet:hover .volet__symbole {
    transform: scale(1.1);
}

.volet__symbole svg {
    width: 100%;
    height: 100%;
}

.volet__titre {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--stone-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.volet__filet {
    width: 50px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--stone-sand),
        transparent
    );
    margin: 0 auto var(--space-md);
}

.volet__description {
    font-size: var(--text-base);
    color: var(--stone-medium);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.volet__liste {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.volet__liste li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--stone-medium);
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(139, 115, 85, 0.08);
}

.volet__liste li:last-child {
    border-bottom: none;
}

.volet__puce {
    color: var(--stone-sand);
    font-size: var(--text-xs);
}

/* Plaque de cuivre (numéro) */
.volet__plaque {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: linear-gradient(
        135deg,
        var(--stone-sand) 0%,
        #a08060 50%,
        var(--stone-sand) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 6px rgba(44, 40, 37, 0.15);
}

.volet__plaque span {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    color: var(--stone-white);
    font-weight: 500;
}

/* Badge central */
.volet__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    color: var(--stone-sand);
    opacity: 0.6;
}

.volet__badge svg {
    width: 100%;
    height: 100%;
}

/* Citation du triptyque */
.triptyque__citation {
    text-align: center;
    margin-top: var(--space-2xl);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--stone-medium);
    position: relative;
    padding: 0 var(--space-xl);
}

.citation__guillemet {
    color: var(--stone-sand);
    font-size: var(--text-2xl);
    font-style: normal;
    vertical-align: middle;
    opacity: 0.5;
}

/* Responsive Triptyque */
@media (max-width: 1024px) {
    .triptyque__volets {
        gap: var(--space-md);
    }
    
    .volet__charniere {
        display: none;
    }
    
    .volet--central .volet__cadre {
        transform: none;
    }
    
    .volet--central:hover .volet__cadre {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .triptyque__volets {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: var(--space-lg);
    }
    
    .volet__cadre {
        padding: var(--space-lg);
    }
    
    .volet--central .volet__cadre {
        transform: none;
    }
}

@media (max-width: 480px) {
    .triptyque {
        padding: var(--space-xl) var(--space-md);
    }
    
    .triptyque__citation {
        font-size: var(--text-base);
        padding: 0;
    }
    
    .citation__guillemet {
        font-size: var(--text-lg);
    }
}

/* Section Process Timeline */
/* ============================================
   CHEMIN DE PIERRE - Process Premium
   ============================================ */

.chemin-pierre {
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(
        180deg,
        var(--stone-white) 0%,
        var(--stone-cream) 50%,
        var(--stone-white) 100%
    );
    position: relative;
    overflow: hidden;
}

.chemin-pierre__container {
    max-width: 900px;
    margin: 0 auto;
}

/* En-tête */
.chemin-pierre__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.chemin-pierre__ornement {
    color: var(--stone-sand);
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.chemin-pierre__ornement svg {
    width: 120px;
    height: 24px;
}

.chemin-pierre__ornement--fin {
    margin-top: var(--space-xl);
    margin-bottom: 0;
}

.chemin-pierre__ornement--fin svg {
    width: 80px;
    height: 40px;
}

.chemin-pierre__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--stone-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.chemin-pierre__intro {
    font-size: var(--text-lg);
    color: var(--stone-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.chemin-pierre__fin {
    text-align: center;
}

/* Container des étapes */
.chemin-etapes {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Connecteur entre étapes */
.chemin-connecteur {
    width: 40px;
    height: 60px;
    color: var(--stone-sand);
    opacity: 0.5;
}

.chemin-connecteur svg {
    width: 100%;
    height: 100%;
}

/* Étape individuelle */
.etape {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    width: 100%;
    max-width: 700px;
}

.etape--inverse {
    flex-direction: row-reverse;
}

.etape--inverse .etape__contenu {
    text-align: right;
}

.etape--inverse .etape__bandeau {
    justify-content: flex-end;
}

.etape--inverse .etape__icone {
    margin-left: auto;
    margin-right: 0;
}

/* Pierre numérotée */
.etape__pierre {
    flex-shrink: 0;
    position: relative;
}

.etape__numero {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone-sand);
}

.etape__cercle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.etape__chiffre {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--stone-dark);
    z-index: 1;
}

/* Étape finale - mise en valeur */
.etape--finale {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.etape--finale .etape__contenu {
    text-align: center;
    max-width: 400px;
}

.etape--finale .etape__bandeau {
    justify-content: center;
}

.etape__pierre--finale {
    margin-bottom: var(--space-md);
}

.etape__numero--finale {
    width: 90px;
    height: 90px;
    background: linear-gradient(
        145deg,
        var(--stone-dark) 0%,
        #3a342e 100%
    );
    border-radius: 50%;
    box-shadow:
        0 4px 20px rgba(44, 40, 37, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.etape__numero--finale .etape__chiffre {
    color: var(--stone-cream);
    font-size: var(--text-3xl);
}

.etape__numero--finale .etape__cercle {
    color: var(--stone-sand);
    opacity: 0.4;
}

/* Contenu de l'étape */
.etape__contenu {
    flex: 1;
    padding-top: var(--space-sm);
}

.etape__bandeau {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.etape__trait {
    display: block;
    width: 30px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--stone-sand),
        transparent
    );
}

.etape__titre {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--stone-dark);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.etape__texte {
    font-size: var(--text-base);
    color: var(--stone-medium);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.etape__texte strong {
    color: var(--stone-dark);
    font-weight: 500;
}

.etape__icone {
    width: 32px;
    height: 32px;
    color: var(--stone-sand);
    opacity: 0.5;
}

.etape__icone svg {
    width: 100%;
    height: 100%;
}

/* Signature finale */
.etape__signature {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--stone-sand);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(139, 115, 85, 0.08);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    margin-top: var(--space-sm);
}

.etape__signature span {
    color: #5a8a5a;
    font-size: var(--text-base);
}

/* Hover effects */
.etape {
    transition: transform var(--duration-base) var(--ease-out);
}

.etape:hover {
    transform: translateX(4px);
}

.etape--inverse:hover {
    transform: translateX(-4px);
}

.etape--finale:hover {
    transform: translateY(-4px);
}

.etape:hover .etape__numero {
    animation: pulse-stone 1s ease-in-out;
}

@keyframes pulse-stone {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
    .chemin-pierre {
        padding: var(--space-xl) var(--space-md);
    }
    
    .etape,
    .etape--inverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .etape__contenu,
    .etape--inverse .etape__contenu {
        text-align: center;
    }
    
    .etape__bandeau,
    .etape--inverse .etape__bandeau {
        justify-content: center;
    }
    
    .etape__icone,
    .etape--inverse .etape__icone {
        margin: 0 auto;
    }
    
    .etape__pierre {
        margin-bottom: var(--space-sm);
    }
    
    .etape__numero {
        width: 60px;
        height: 60px;
    }
    
    .etape__chiffre {
        font-size: var(--text-xl);
    }
    
    .chemin-connecteur {
        height: 40px;
    }
    
    .etape:hover,
    .etape--inverse:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .etape__numero {
        width: 50px;
        height: 50px;
    }
    
    .etape__numero--finale {
        width: 70px;
        height: 70px;
    }
    
    .etape__trait {
        width: 20px;
    }
    
    .etape__titre {
        font-size: var(--text-lg);
    }
}

/* Section Zone Intervention */
.zone-intervention {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--stone-light);
}

.zone-intervention__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: center;
}

.zone-intervention__title {
    font-size: var(--text-2xl);
    color: var(--stone-dark);
    margin-bottom: var(--space-md);
}

.zone-intervention__text {
    font-size: var(--text-lg);
    color: var(--stone-medium);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.zone-intervention__note {
    font-size: var(--text-base);
    color: var(--stone-sand);
    font-style: italic;
}

.zone-intervention__visual {
    display: flex;
    justify-content: center;
}

.zone-map {
    width: 200px;
    height: 200px;
}

@media (max-width: 768px) {
    .zone-intervention__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .zone-intervention__visual {
        order: -1;
    }
}

@media (max-width: 480px) {
    .zone-intervention {
        padding: var(--space-xl) var(--space-md);
    }
}

/* CTA Prestations */
.cta--prestations {
    background-color: var(--stone-dark);
}

.cta--prestations .cta__title,
.cta--prestations .cta__text {
    color: var(--stone-cream);
}

.cta--prestations .cta__button {
    background-color: var(--stone-cream);
    color: var(--stone-dark);
}

.cta--prestations .cta__button:hover {
    background-color: var(--stone-white);
}

/* Savoir-faire link */
.savoirfaire__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--stone-dark);
    text-decoration: none;
    transition: color var(--duration-base) var(--ease-out);
}

.savoirfaire__link:hover {
    color: var(--stone-sand);
}

.savoirfaire__link svg {
    transition: transform var(--duration-base) var(--ease-out);
}

.savoirfaire__link:hover svg {
    transform: translateX(4px);
}

/* --------------------------------------------
   SECTION TÉMOIGNAGE
   -------------------------------------------- */
.temoignage {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--stone-dark);
    color: var(--stone-cream);
}

.temoignage__stone-block {
    max-width: var(--container-narrow);
    margin: 0 auto;
    position: relative;
}

.temoignage__marks {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.temoignage__figure {
    position: relative;
    z-index: 1;
}

.temoignage__quote {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.temoignage__quote p + p {
    margin-top: var(--space-md);
}

.temoignage__author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.temoignage__name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--stone-sand);
}

.temoignage__project {
    font-size: var(--text-sm);
    color: var(--stone-medium);
}

/* --------------------------------------------
   SECTION APERÇU
   -------------------------------------------- */
.apercu {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--stone-white);
}

.apercu__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.apercu__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.apercu__chapter {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--stone-sand);
    margin-bottom: var(--space-sm);
}

.apercu__title {
    font-size: var(--text-3xl);
    color: var(--stone-dark);
}

.apercu__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.apercu__item {
    position: relative;
    overflow: visible;
    border-radius: 8px;
    background-color: transparent;
}

.apercu__item--large {
    grid-column: span 2;
}

.apercu__image-wrap {
    position: relative;
    overflow: visible;
}

.apercu__image-wrap.stone-frame {
    overflow: hidden;
}

.apercu__placeholder {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--duration-slow) var(--ease-out);
}

.apercu__item:hover .stone-frame__placeholder,
.apercu__item:hover .apercu__placeholder {
    transform: scale(1.03);
}

.apercu__caption {
    padding: var(--space-md);
    background-color: var(--stone-cream);
}

.apercu__type {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--stone-dark);
    margin-bottom: var(--space-xs);
}

.apercu__location {
    font-size: var(--text-sm);
    color: var(--stone-medium);
}

.apercu__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    font-weight: 500;
    color: var(--stone-dark);
    transition: color var(--duration-fast);
}

.apercu__link:hover {
    color: var(--stone-warm);
}

.apercu__link svg {
    transition: transform var(--duration-fast);
}

.apercu__link:hover svg {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .apercu__gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .apercu__item--large {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .apercu__gallery {
        grid-template-columns: 1fr;
    }
    
    .apercu__item--large {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .apercu {
        padding: var(--space-xl) var(--space-md);
    }
    
    .apercu__header {
        margin-bottom: var(--space-lg);
    }
    
    .apercu__caption {
        padding: var(--space-sm);
    }
    
    .temoignage {
        padding: var(--space-xl) var(--space-md);
    }
    
    .temoignage__quote p {
        font-size: var(--text-base);
    }
}

/* --------------------------------------------
   SECTION CTA
   -------------------------------------------- */
.cta {
    padding: var(--space-3xl) var(--space-lg);
    background-color: var(--stone-light);
}

.cta--page {
    background-color: var(--stone-dark);
    color: var(--stone-cream);
}

.cta__container {
    max-width: var(--container-narrow);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.cta--page .cta__container {
    grid-template-columns: 1fr;
    text-align: center;
}

.cta__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.cta__text {
    color: var(--stone-medium);
    margin-bottom: var(--space-lg);
}

.cta--page .cta__text {
    color: var(--stone-sand);
}

.cta__button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background-color: var(--stone-dark);
    color: var(--stone-cream);
    font-weight: 500;
    border-radius: 4px;
    transition: background-color var(--duration-fast), transform var(--duration-fast);
}

.cta--page .cta__button {
    background-color: var(--stone-warm);
    color: var(--stone-white);
}

.cta__button:hover {
    background-color: var(--stone-medium);
    transform: translateY(-2px);
}

.cta--page .cta__button:hover {
    background-color: var(--stone-sand);
    color: var(--stone-dark);
}

.cta__button svg {
    transition: transform var(--duration-fast);
}

.cta__button:hover svg {
    transform: translateX(5px);
}

.cta__zone {
    padding: var(--space-lg);
    background-color: var(--stone-cream);
    border-radius: 8px;
    text-align: center;
}

.cta__zone-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--stone-dark);
    margin-bottom: var(--space-sm);
}

.cta__zone-text {
    font-size: var(--text-sm);
    color: var(--stone-medium);
}

@media (max-width: 768px) {
    .cta__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: var(--space-xl) var(--space-md);
    }
    
    .cta__zone {
        padding: var(--space-md);
    }
    
    .cta__button {
        padding: var(--space-sm) var(--space-md);
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------
   FOOTER
   -------------------------------------------- */
.footer {
    padding: var(--space-2xl) var(--space-lg);
    background-color: var(--stone-dark);
    color: var(--stone-cream);
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.footer__main {
    text-align: left;
}

.footer__brand {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer__tagline {
    font-size: var(--text-sm);
    color: var(--stone-medium);
}

.footer__contact {
    display: flex;
    gap: var(--space-lg);
}

.footer__link {
    color: var(--stone-sand);
    transition: color var(--duration-fast);
}

.footer__link:hover {
    color: var(--stone-cream);
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
}

.footer__legal a {
    font-size: var(--text-sm);
    color: var(--stone-medium);
    transition: color var(--duration-fast);
}

.footer__legal a:hover {
    color: var(--stone-cream);
}

.footer__copyright {
    width: 100%;
    text-align: center;
    font-size: var(--text-xs);
    color: var(--stone-medium);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__credit {
    width: 100%;
    text-align: center;
    font-size: var(--text-xs);
    color: var(--stone-medium);
    margin-top: var(--space-xs);
}

.footer__credit a {
    color: var(--stone-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__credit a:hover {
    color: var(--stone-cream);
}

@media (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__main { text-align: center; }
    .footer__contact { flex-direction: column; gap: var(--space-sm); }
}

/* --------------------------------------------
   COOKIE BANNER
   -------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    z-index: 9000;
    max-width: 500px;
    padding: var(--space-lg);
    background-color: var(--stone-dark);
    color: var(--stone-cream);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideUp 0.5s var(--ease-out);
}

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

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__text {
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.cookie-banner__accept {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--stone-warm);
    color: var(--stone-white);
    font-weight: 500;
    border-radius: 4px;
    transition: background-color var(--duration-fast);
}

.cookie-banner__accept:hover {
    background-color: var(--stone-sand);
    color: var(--stone-dark);
}

.cookie-banner__more {
    font-size: var(--text-sm);
    color: var(--stone-sand);
    text-decoration: underline;
}

.cookie-banner__more:hover {
    color: var(--stone-cream);
}

@media (max-width: 600px) {
    .cookie-banner {
        left: var(--space-sm);
        right: var(--space-sm);
        bottom: var(--space-sm);
    }
}

/* ============================================
   PAGES SPÉCIFIQUES
   ============================================ */

/* --------------------------------------------
   PAGE HEADER (Réalisations, Contact)
   -------------------------------------------- */
.page-header {
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
    background-color: var(--stone-cream);
    text-align: center;
}

.page-header__container {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.page-header__chapter {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--stone-warm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.page-header__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.page-header__intro {
    font-size: var(--text-lg);
    color: var(--stone-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------
   GALERIE RÉALISATIONS
   -------------------------------------------- */
.gallery-filters {
    padding: var(--space-lg) var(--space-lg);
    background-color: var(--stone-cream);
    border-bottom: 1px solid var(--stone-sand);
    position: sticky;
    top: var(--nav-height);
    z-index: 100;
}

.gallery-filters__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.filter-btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--stone-medium);
    background-color: transparent;
    border: 1px solid var(--stone-sand);
    border-radius: 100px;
    transition: all var(--duration-fast);
}

.filter-btn:hover {
    border-color: var(--stone-warm);
    color: var(--stone-dark);
}

.filter-btn--active {
    background-color: var(--stone-dark);
    border-color: var(--stone-dark);
    color: var(--stone-cream);
}

.filter-btn--active:hover {
    color: var(--stone-cream);
}

.gallery {
    padding: var(--space-2xl) var(--space-lg);
    background-color: var(--stone-white);
}

.gallery__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.projet {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    background-color: transparent;
    transition: transform var(--duration-base) var(--ease-out);
}

.projet:hover {
    transform: translateY(-3px);
}

.projet--featured {
    grid-column: span 2;
}

.projet--wide {
    grid-column: span 3;
}

.projet__link {
    display: block;
}

.projet__image-wrap {
    position: relative;
    overflow: hidden;
    padding: 14px;
    background: linear-gradient(
        145deg,
        #e8ddd0 0%,
        #d9cdbf 15%,
        #cfc2b3 30%,
        #d4c7b8 50%,
        #cfc2b3 70%,
        #d9cdbf 85%,
        #e8ddd0 100%
    );
    border-radius: 5px;
    box-shadow: 
        0 20px 40px -10px rgba(44, 40, 37, 0.25),
        0 10px 25px -5px rgba(44, 40, 37, 0.15),
        0 4px 10px rgba(44, 40, 37, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 1px 0 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(107, 91, 79, 0.18),
        inset -1px 0 0 rgba(107, 91, 79, 0.12);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.projet__image-wrap::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(139, 115, 85, 0.12);
    border-radius: 3px;
    pointer-events: none;
    z-index: 2;
}

.projet__image-wrap::after {
    content: '';
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(139, 115, 85, 0.06);
    box-shadow: inset 0 0 15px rgba(107, 91, 79, 0.04);
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
}

.projet:hover .projet__image-wrap {
    box-shadow: 
        0 30px 60px -10px rgba(44, 40, 37, 0.3),
        0 15px 35px -5px rgba(44, 40, 37, 0.2),
        0 6px 15px rgba(44, 40, 37, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 1px 0 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(107, 91, 79, 0.2),
        inset -1px 0 0 rgba(107, 91, 79, 0.15);
    transform: translateY(-3px);
}

.projet__placeholder {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    transition: transform var(--duration-slow) var(--ease-out), filter 0.3s ease;
    filter: contrast(1.02) saturate(0.95);
}

.projet__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
    filter: saturate(0.95) contrast(1.02);
}

.projet:hover .projet__placeholder,
.projet:hover .projet__image {
    transform: scale(1.04);
    filter: contrast(1.05) saturate(1);
}

.projet__overlay {
    position: absolute;
    inset: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(44, 40, 37, 0.65);
    opacity: 0;
    transition: opacity var(--duration-base);
    border-radius: 2px;
    z-index: 3;
}

.projet:hover .projet__overlay {
    opacity: 1;
}

.projet__voir {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--stone-cream);
    color: var(--stone-dark);
    font-weight: 500;
    border-radius: 4px;
    transform: translateY(10px);
    transition: transform var(--duration-base);
}

.projet:hover .projet__voir {
    transform: translateY(0);
}

.projet__info {
    padding: var(--space-md);
    background-color: var(--stone-cream);
    border-radius: 0 0 6px 6px;
    margin-top: -4px;
}

.projet__category {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--stone-warm);
    margin-bottom: var(--space-xs);
}

.projet__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--stone-dark);
}

.projet__location {
    font-size: var(--text-sm);
    color: var(--stone-medium);
}

.projet__description {
    margin-top: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--stone-medium);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .gallery__container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projet--featured,
    .projet--wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .gallery__container {
        grid-template-columns: 1fr;
    }
    
    .projet--featured,
    .projet--wide {
        grid-column: span 1;
    }
}

/* --------------------------------------------
   PAGE CONTACT
   -------------------------------------------- */
.contact-section {
    padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
    background-color: var(--stone-white);
}

.contact-section__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form-wrap {
    background-color: var(--stone-cream);
    padding: var(--space-xl);
    border-radius: 12px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group--full {
    grid-column: span 2;
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--stone-dark);
}

.form-required {
    color: var(--stone-warm);
}

.form-input,
.form-select,
.form-textarea {
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--stone-dark);
    background-color: var(--stone-white);
    border: 1px solid var(--stone-sand);
    border-radius: 6px;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--stone-warm);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
    outline: none;
}

.form-input.is-error,
.form-textarea.is-error {
    border-color: #c44;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B5B4F' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: calc(var(--space-md) * 2 + 12px);
}

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

.form-error {
    font-size: var(--text-xs);
    color: #c44;
    min-height: 1.2em;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.form-checkbox input {
    position: absolute;
    opacity: 0;
}

.form-checkbox__mark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid var(--stone-sand);
    border-radius: 4px;
    background-color: var(--stone-white);
    transition: all var(--duration-fast);
    position: relative;
}

.form-checkbox input:checked + .form-checkbox__mark {
    background-color: var(--stone-warm);
    border-color: var(--stone-warm);
}

.form-checkbox input:checked + .form-checkbox__mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--stone-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox input:focus-visible + .form-checkbox__mark {
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.2);
}

.form-checkbox__text {
    font-size: var(--text-sm);
    color: var(--stone-medium);
    line-height: 1.5;
}

.form-checkbox__text a {
    color: var(--stone-warm);
    text-decoration: underline;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background-color: var(--stone-dark);
    color: var(--stone-cream);
    font-weight: 600;
    border-radius: 6px;
    transition: background-color var(--duration-fast), transform var(--duration-fast);
}

.form-submit:hover {
    background-color: var(--stone-medium);
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-submit__loading {
    display: none;
}

.form-submit.is-loading .form-submit__text,
.form-submit.is-loading .form-submit__arrow {
    display: none;
}

.form-submit.is-loading .form-submit__loading {
    display: block;
}

.form-success {
    grid-column: span 2;
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--stone-light);
    border-radius: 8px;
}

.form-success[hidden] {
    display: none;
}

.form-success svg {
    margin: 0 auto var(--space-md);
}

.form-success__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--stone-dark);
    margin-bottom: var(--space-sm);
}

.form-success__text {
    color: var(--stone-medium);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-info__block {
    padding: var(--space-lg);
    background-color: var(--stone-cream);
    border-radius: 12px;
}

.contact-info__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--stone-dark);
    margin-bottom: var(--space-md);
}

.contact-info__address p {
    margin-bottom: var(--space-sm);
}

.contact-info__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--stone-dark);
    font-weight: 500;
    transition: color var(--duration-fast);
}

.contact-info__link:hover {
    color: var(--stone-warm);
}

.contact-info__link svg {
    color: var(--stone-warm);
}

.contact-info__text {
    font-size: var(--text-sm);
    color: var(--stone-medium);
    line-height: 1.6;
}

.contact-info__map {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: var(--space-md) auto 0;
    display: block;
}

.contact-info__steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    counter-reset: step;
}

.contact-info__steps li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--stone-medium);
}

.step-marker {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--stone-light);
    color: var(--stone-warm);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .contact-section__container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group--full {
        grid-column: span 1;
    }
    
    .form-success {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: var(--space-xl) var(--space-md) var(--space-2xl);
    }
    
    .contact-form-wrap {
        padding: var(--space-md);
        border-radius: 8px;
    }
    
    .contact-info {
        padding: var(--space-md);
    }
}

/* --------------------------------------------
   PAGES LÉGALES
   -------------------------------------------- */
.legal-page {
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
    background-color: var(--stone-white);
}

.legal-page__container {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.legal-page__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--stone-sand);
}

.legal-page__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.legal-page__update {
    font-size: var(--text-sm);
    color: var(--stone-medium);
}

.legal-page__content {
    font-size: var(--text-base);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: var(--space-xl);
}

.legal-section h2 {
    font-size: var(--text-xl);
    color: var(--stone-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--stone-sand);
}

.legal-section h3 {
    font-size: var(--text-lg);
    color: var(--stone-dark);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-section p {
    color: var(--stone-medium);
    margin-bottom: var(--space-sm);
}

.legal-section ul,
.legal-section ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.legal-section li {
    color: var(--stone-medium);
    margin-bottom: var(--space-sm);
    position: relative;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: calc(var(--space-md) * -1);
    color: var(--stone-warm);
}

.legal-section a {
    color: var(--stone-warm);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--stone-dark);
}

.legal-section address {
    margin: var(--space-md) 0;
    padding: var(--space-md);
    background-color: var(--stone-cream);
    border-radius: 8px;
}

.legal-section address p {
    margin-bottom: var(--space-xs);
}

.legal-page__footer {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--stone-sand);
}

.legal-page__back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--stone-dark);
    transition: color var(--duration-fast);
}

.legal-page__back:hover {
    color: var(--stone-warm);
}

.legal-page__back svg {
    transition: transform var(--duration-fast);
}

.legal-page__back:hover svg {
    transform: translateX(-5px);
}

/* Mobile adjustments for legal pages */
@media (max-width: 480px) {
    .legal-page {
        padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-2xl);
    }
    
    .legal-page__title {
        font-size: var(--text-2xl);
    }
    
    .legal-section ul,
    .legal-section ol {
        padding-left: var(--space-md);
    }
}

/* Mobile adjustments for page headers */
@media (max-width: 480px) {
    .page-header {
        padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-lg);
    }
    
    .page-header__title {
        font-size: var(--text-2xl);
    }
    
    .page-header__intro {
        font-size: var(--text-base);
    }
}

/* Mobile adjustments for gallery filters */
@media (max-width: 480px) {
    .gallery-filters {
        padding: var(--space-md) var(--space-sm);
    }
    
    .filter-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-xs);
    }
    
    .gallery {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .gallery__container {
        gap: var(--space-md);
    }
}

/* Mobile adjustments for footer */
@media (max-width: 480px) {
    .footer {
        padding: var(--space-xl) var(--space-md);
    }
    
    .footer__legal {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* --------------------------------------------
   LIGHTBOX
   -------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 40, 37, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-base) var(--ease-out), 
                visibility var(--duration-base) var(--ease-out);
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox__image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform var(--duration-base) var(--ease-out);
}

.lightbox.is-active .lightbox__image {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--stone-cream);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--duration-fast), transform var(--duration-fast);
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Button reset for projet__link */
button.projet__link {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
