

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ----------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2418;
    background-color: #fefefe;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1510;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1em;
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-light {
    background: linear-gradient(180deg, #fefefe 0%, #faf9f7 100%);
}

.section-alternate {
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------
   EN-TÊTE & NAVIGATION
   ---------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 254, 254, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(218, 205, 188, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(254, 254, 254, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #8b6f47 0%, #b8956a 50%, #d4b896 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
    object-fit: contain;
}

.logo span {
    font-weight: 300;
    opacity: 0.9;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b6f47, #b8956a);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.main-nav {
    position: relative;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 400;
    color: #5a4a3a;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b8956a, transparent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a:hover::before,
.nav-list a.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-list a.active {
    color: #8b6f47;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8b6f47, #b8956a);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ----------------------------------------------------------
   HERO SECTION - IMPACTANT
   ---------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, #faf7f2 0%, #f3ebe0 25%, #ebe0d2 50%, #f0e8dc 75%, #faf7f2 100%),
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(184, 149, 106, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 85% 60%, rgba(139, 111, 71, 0.08) 0%, transparent 50%);
    background-size: 400% 400%, auto, auto;
    animation: gradientShift 15s ease infinite, fadeIn 2s ease-out;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 1000px;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    color: #1a1510;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 40px rgba(255, 255, 255, 0.5);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8956a, transparent);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #5a4a3a;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* ----------------------------------------------------------
   BOUTONS - PREMIUM
   ---------------------------------------------------------- */

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #8b6f47 0%, #b8956a 100%);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.25);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.35);
    background: linear-gradient(135deg, #7a5f3f 0%, #a8855a 100%);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #b8956a 0%, #d4b896 100%);
    box-shadow: 0 10px 30px rgba(184, 149, 106, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a8855a 0%, #c4a886 100%);
    box-shadow: 0 15px 40px rgba(184, 149, 106, 0.4);
}

.btn-large {
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-hero {
    font-size: 1.15rem;
    padding: 1.4rem 4rem;
    animation: fadeInUp 1s ease-out 0.7s both;
    position: relative;
}

.btn-hero::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-hero:hover::after {
    transform: translateX(5px);
}

/* ----------------------------------------------------------
   SECTIONS COMMUNES
   ---------------------------------------------------------- */

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1510;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8956a, transparent);
}

.section-subtitle {
    text-align: center;
    color: #8b6f47;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin: 2.5rem auto 4rem;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.section-page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, #fefefe 0%, #faf9f7 100%);
    margin-top: 80px;
}

.section-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #1a1510;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #8b6f47;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* ----------------------------------------------------------
   ACCUEIL - INTRO & SERVICES
   ---------------------------------------------------------- */

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(218, 205, 188, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.intro-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1510;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.9;
    color: #5a4a3a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-services {
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 50%, #fefefe 100%);
    position: relative;
}

.section-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 149, 106, 0.3), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 249, 247, 0.9) 100%);
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(218, 205, 188, 0.3);
    border-radius: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b6f47, #b8956a, #d4b896);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 111, 71, 0.2);
    border-color: rgba(184, 149, 106, 0.5);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(139, 111, 71, 0.2));
}

.service-image {
    width: 100%;
    min-height: 280px;
    height: auto;
    overflow: visible;
    margin-bottom: 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: transparent;
}

.service-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 2px 8px rgba(139, 111, 71, 0.12));
}

.service-card:hover .service-image img {
    transform: scale(1.03);
}

/* Images PNG détourées : ombre naturelle et légère */
.service-image img[src*=".png"],
.service-image img[src*="polaroid"],
.service-image img[src*="badge"] {
    filter: drop-shadow(0 3px 10px rgba(139, 111, 71, 0.15));
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 1s;
}

.service-card h3 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: #1a1510;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #5a4a3a;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.service-link {
    color: #b8956a;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.service-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #8b6f47;
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* ----------------------------------------------------------
   TÉMOIGNAGES / AVIS
   ---------------------------------------------------------- */

.section-testimonials {
    background: linear-gradient(180deg, #fefefe 0%, #f5f3f0 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 247, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-left: 4px solid #b8956a;
    border-radius: 0;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: rgba(184, 149, 106, 0.2);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 111, 71, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: #5a4a3a;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #8b6f47;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ----------------------------------------------------------
   GALERIE - MAGNIFIQUE
   ---------------------------------------------------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-fluid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 4/3;
    background-color: #e8e0d6;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 21, 16, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover {
    box-shadow: 0 25px 60px rgba(139, 111, 71, 0.3);
    transform: translateY(-5px);
}

/* Lightbox galerie : ouvrir l'image en grand au clic */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 21, 16, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.gallery-lightbox-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-inner {
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-inner img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-close:hover {
    background: rgba(184, 149, 106, 0.8);
    color: #fff;
}

/* ----------------------------------------------------------
   PRESTATIONS - DÉTAILS PREMIUM
   ---------------------------------------------------------- */

.service-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 8rem;
}

.service-detail-reverse {
    direction: rtl;
}

.service-detail-reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1510;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1.5rem;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #8b6f47, #b8956a);
}

.service-intro {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.9;
    color: #5a4a3a;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.service-quote {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-style: italic;
    color: #8b6f47;
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem;
    border-left: 4px solid #b8956a;
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.01em;
    position: relative;
}

.service-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(184, 149, 106, 0.3);
    line-height: 1;
}

.service-detail-content h3 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    color: #1a1510;
    letter-spacing: -0.01em;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 1rem 0;
    color: #5a4a3a;
    border-bottom: 1px solid rgba(218, 205, 188, 0.3);
    font-size: 1.05rem;
    font-weight: 300;
    transition: all 0.3s ease;
    padding-left: 2rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8956a;
    font-weight: 600;
}

.service-features li:hover {
    padding-left: 2.5rem;
    color: #8b6f47;
}

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

.service-note {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(245, 237, 224, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-left: 4px solid #b8956a;
    color: #5a4a3a;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    backdrop-filter: blur(10px);
}

.service-detail-image {
    border-radius: 0;
    overflow: visible;
    background-color: transparent;
    position: relative;
    box-shadow: none;
    transition: all 0.5s ease;
    padding: 1.5rem;
}

.service-detail-image:hover {
    transform: translateY(-5px);
}

.service-detail-image:hover img {
    filter: drop-shadow(0 4px 12px rgba(139, 111, 71, 0.18));
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(139, 111, 71, 0.12));
}

.service-detail-image:hover img {
    transform: scale(1.02);
}

/* Photobooth : photo visible en entier (dézoom) */
#photobooth .service-detail-image img {
    object-fit: contain;
    object-position: center;
}

#photobooth .service-detail-image:hover img {
    transform: none;
}

/* Polaroid : styles spécifiques avec hauteur uniforme (défini plus bas) */
#polaroid .service-detail-image:hover img {
    transform: scale(1.02);
}

/* Images PNG détourées dans les détails de prestations : ombre naturelle et légère */
.service-detail-image img[src*=".png"],
#badge .service-detail-image img,
#polaroid .service-detail-image img[src*=".png"] {
    filter: drop-shadow(0 3px 10px rgba(139, 111, 71, 0.15));
}

/* Fond subtil sur les sections contenant des PNG détourées */
#polaroid.section-service-detail {
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
}

/* Espacement horizontal augmenté entre texte et images Polaroid */
#polaroid .service-detail {
    gap: 8rem;  /* Augmenté de 6rem à 8rem pour plus de respiration */
}

/* Grille Polaroid : alignement vertical (colonne) avec espacement uniforme */
#polaroid .service-detail-images-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin-top: 50px;  /* Décalage vertical pour alignement harmonieux avec le titre */
}

/* Images Polaroid : largeur uniforme et alignement vertical */
#polaroid .service-detail-image {
    padding: 0;
    overflow: visible;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image 1 : rotation légère -2deg */
#polaroid .service-detail-image:nth-child(1) {
    transform: rotate(-2deg);
}

/* Image 2 : rotation 0deg (centrée) */
#polaroid .service-detail-image:nth-child(2) {
    transform: rotate(0deg);
}

/* Image 3 : rotation légère +2deg */
#polaroid .service-detail-image:nth-child(3) {
    transform: rotate(2deg);
}

/* Hover : légère correction de la rotation */
#polaroid .service-detail-image:hover {
    transform: rotate(0deg) translateY(-5px);
}

#polaroid .service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(139, 111, 71, 0.12));
}

/* ----------------------------------------------------------
   TABLEAUX DE TARIFS - ÉLÉGANT
   ---------------------------------------------------------- */

.pricing-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(218, 205, 188, 0.3);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 247, 0.95) 100%);
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(218, 205, 188, 0.2);
}

.pricing-table th {
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
    font-weight: 500;
    color: #1a1510;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.pricing-table td {
    color: #5a4a3a;
    font-size: 1.05rem;
    font-weight: 300;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
    transform: translateX(5px);
}

.pricing-single {
    margin: 2rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-left: 4px solid #b8956a;
    backdrop-filter: blur(10px);
}

.pricing-price {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #8b6f47;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.pricing-note {
    color: #5a4a3a;
    font-size: 1rem;
    font-weight: 300;
}

/* ----------------------------------------------------------
   ÉVÉNEMENTS
   ---------------------------------------------------------- */

.events-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #5a4a3a;
    font-weight: 300;
    line-height: 1.9;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 247, 0.95) 100%);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(218, 205, 188, 0.3);
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 149, 106, 0.1), transparent);
    transition: left 0.5s ease;
}

.event-card:hover::before {
    left: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(139, 111, 71, 0.2);
    border-color: rgba(184, 149, 106, 0.5);
}

.event-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(139, 111, 71, 0.2));
    transition: transform 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.1);
}

.event-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1510;
    letter-spacing: -0.01em;
}

.event-card p {
    color: #5a4a3a;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
}

.event-timing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 205, 188, 0.3);
    font-size: 1rem;
    color: #8b6f47;
    font-weight: 400;
}

.timing-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
}

.timing-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(218, 205, 188, 0.2);
    color: #5a4a3a;
    font-size: 1.05rem;
    font-weight: 300;
    transition: padding-left 0.3s ease;
}

.timing-list li:hover {
    padding-left: 1rem;
    color: #8b6f47;
}

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

.events-advice {
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 205, 188, 0.3);
}

.events-advice h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1510;
    letter-spacing: -0.02em;
}

/* ----------------------------------------------------------
   À PROPOS
   ---------------------------------------------------------- */

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    margin: 3.5rem 0 1.5rem;
    color: #1a1510;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #8b6f47, #b8956a);
}

.about-text p {
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    line-height: 1.9;
    color: #5a4a3a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.value-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 249, 247, 0.9) 100%);
    border-radius: 0;
    border: 1px solid rgba(218, 205, 188, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    border-color: rgba(184, 149, 106, 0.5);
}

.value-item h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.7rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1510;
    letter-spacing: -0.01em;
}

.value-item p {
    color: #5a4a3a;
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.about-list li {
    padding: 1.2rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #5a4a3a;
    border-bottom: 1px solid rgba(218, 205, 188, 0.2);
    font-size: 1.05rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.about-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #b8956a;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.about-list li:hover {
    padding-left: 3rem;
    color: #8b6f47;
}

.about-list li:hover::before {
    transform: translateX(5px);
}

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

/* ----------------------------------------------------------
   CONTACT / FORMULAIRE - PREMIUM
   ---------------------------------------------------------- */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: 120px;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 205, 188, 0.3);
}

.contact-info-side h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #1a1510;
    letter-spacing: -0.02em;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    margin-bottom: 2rem;
    color: #5a4a3a;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.75rem;
    color: #1a1510;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.contact-item a {
    color: #b8956a;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: #8b6f47;
    transform: translateX(5px);
}

.contact-note {
    font-size: 1rem;
    color: #5a4a3a;
    line-height: 1.8;
    font-weight: 300;
}

/* Social Icons in Contact Section */
.contact-info-side .social-links-icons {
    margin-top: 1.5rem;
}

.contact-info-side .social-icon {
    color: #8b6f47;
}

.contact-info-side .social-icon:hover {
    color: #6b5537;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 247, 0.95) 100%);
    padding: 4rem;
    border: 1px solid rgba(218, 205, 188, 0.3);
    border-radius: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1a1510;
    letter-spacing: -0.02em;
}

.form-row {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #1a1510;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1a1510;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(218, 205, 188, 0.5);
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8956a;
    box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
    background-color: #ffffff;
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #5a4a3a;
    font-weight: 300;
    padding: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.checkbox-label:hover {
    background: rgba(248, 245, 240, 0.5);
    border-color: rgba(218, 205, 188, 0.3);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 1rem;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: #b8956a;
}

.form-error {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #c06060;
}

.form-feedback {
    min-height: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 300;
}

.form-feedback.form-success {
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.form-feedback.form-error {
    background: linear-gradient(135deg, rgba(255, 235, 238, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    color: #c62828;
    border-left: 4px solid #f44336;
}

.form-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #8b6f47;
    line-height: 1.7;
    font-weight: 300;
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(218, 205, 188, 0.3);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    padding-left: 1rem;
}

.faq-question {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: #1a1510;
    margin-bottom: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 2rem;
}

.faq-question::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #b8956a;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: #8b6f47;
}

.faq-question:hover::before {
    transform: rotate(90deg);
}

.faq-answer {
    color: #5a4a3a;
    line-height: 1.9;
    font-weight: 300;
    padding-left: 2rem;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05rem;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 205, 188, 0.3);
}

.faq-cta p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #5a4a3a;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ----------------------------------------------------------
   MENTIONS LÉGALES
   ---------------------------------------------------------- */

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 249, 247, 0.9) 100%);
    padding: 4rem;
    border: 1px solid rgba(218, 205, 188, 0.3);
    backdrop-filter: blur(10px);
}

.legal-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    color: #1a1510;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #8b6f47, #b8956a);
}

.legal-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.7rem);
    font-weight: 400;
    margin: 2rem 0 1rem;
    color: #1a1510;
    letter-spacing: -0.01em;
}

.legal-content h4 {
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    font-weight: 500;
    margin: 1.75rem 0 0.75rem;
    color: #5a4a3a;
    letter-spacing: -0.01em;
}

.legal-content ul {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
    color: #5a4a3a;
    line-height: 1.85;
    font-weight: 300;
    font-size: 1.05rem;
}

.legal-content ul li {
    margin-bottom: 0.35rem;
}

.legal-content h2.legal-main-title {
    text-transform: none;
}

.legal-content h2.legal-cgv-title {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(218, 205, 188, 0.5);
}

.legal-content p {
    color: #5a4a3a;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1.05rem;
}

.legal-note {
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
    font-size: 0.95rem;
    color: #8b6f47;
    font-style: italic;
}

.legal-content > .legal-note:last-child {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 205, 188, 0.3);
}

/* ----------------------------------------------------------
   CTA SECTION - IMPACTANT
   ---------------------------------------------------------- */

.section-cta {
    background: linear-gradient(135deg, #e8ddd0 0%, #dcc8b8 50%, #e8ddd0 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(184, 149, 106, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 111, 71, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #1a1510;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #5a4a3a;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}

/* ----------------------------------------------------------
   PIED DE PAGE - ÉLÉGANT
   ---------------------------------------------------------- */

.site-footer {
    background: linear-gradient(180deg, #2c2418 0%, #1a1510 100%);
    color: #d4c5b0;
    padding: 5rem 0 2rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 149, 106, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3,
.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #f5f3f0;
    letter-spacing: 0.02em;
}

.footer-col p {
    font-size: 1rem;
    color: #d4c5b0;
    margin-bottom: 0.75rem;
    font-weight: 300;
    line-height: 1.8;
}

.footer-col p.seo-text {
    font-size: 0.85rem;
    color: rgba(212, 197, 176, 0.75);
    line-height: 1.7;
    margin-top: 0.5rem;
    margin-bottom: 0;
    max-width: 22rem;
}

.footer-col a {
    color: #d4c5b0;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-col a:hover {
    color: #b8956a;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.social-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.social-links a:hover::before {
    transform: translateX(3px);
}

/* Social Icons Styles */
.social-links-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #d4c5b0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #b8956a;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 184, 150, 0.2);
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #b8956a;
    margin: 0;
    font-weight: 300;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

/* ----------------------------------------------------------
   ACCORDÉONS TARIFS
   ---------------------------------------------------------- */

.pricing-accordions {
    margin: 2rem 0;
}

.pricing-accordion-item {
    border: 1px solid rgba(218, 205, 188, 0.3);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 249, 247, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.pricing-accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #1a1510;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
}

.pricing-accordion-toggle:hover {
    background: rgba(248, 245, 240, 0.5);
    color: #8b6f47;
}

.pricing-accordion-toggle[aria-expanded="true"] {
    background: rgba(248, 245, 240, 0.8);
    border-bottom: 1px solid rgba(218, 205, 188, 0.3);
}

.accordion-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #b8956a;
}

.pricing-accordion-toggle[aria-expanded="true"] .accordion-arrow {
    transform: rotate(90deg);
}

.pricing-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.pricing-accordion-content[aria-hidden="false"] {
    padding: 1.5rem;
    max-height: 1000px;
}

.service-features-ordered {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-features-ordered li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #5a4a3a;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

.service-features-ordered li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #b8956a;
    font-weight: 600;
}

.service-features-ordered li strong {
    color: #1a1510;
    font-weight: 500;
}

.service-detail-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
}

/* Téléphone d'or : media avec images + vidéo intégrée */
.service-detail-media-telephone {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-images-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-detail-video-inline {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8e0d6;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.2);
}

.service-detail-video-inline video {
    width: 100%;
    height: auto;
    display: block;
}

.video-sound-toggle {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.video-sound-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.video-sound-toggle:active {
    transform: scale(0.95);
}

.video-sound-toggle .sound-icon {
    display: block;
    line-height: 1;
}

/* Cashless block - texte à gauche, image TPE à droite */
.cashless-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cashless-text {
    flex: 1;
    min-width: 280px;
}

.cashless-image {
    flex: 0 0 320px;
    max-width: 100%;
}

.cashless-image img,
.cashless-pdf {
    width: 100%;
    min-height: 400px;
    height: auto;
    display: block;
    object-fit: contain;
    transform: rotate(-5deg);
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.25);
}

.cashless-pdf {
    min-height: 450px;
}

/* Photos inclinées Téléphone d'or */
.service-detail-image-tilt {
    transform: rotate(-2deg);
}

.service-detail-image-tilt:nth-child(2) {
    transform: rotate(2deg);
}

.service-detail-images-inclined .service-detail-image-tilt:hover {
    transform: rotate(-2deg) translateY(-10px);
}

.service-detail-images-inclined .service-detail-image-tilt:nth-child(2):hover {
    transform: rotate(2deg) translateY(-10px);
}

/* Téléphone d'or : téléphone droit + chevalet incliné */
.service-detail-image-telephone {
    transform: none;
}

.service-detail-image-chevalet {
    transform: rotate(6deg);
}

.service-detail-images-telephone .service-detail-image-telephone:hover {
    transform: translateY(-10px);
}

.service-detail-images-telephone .service-detail-image-chevalet:hover {
    transform: rotate(-6deg) translateY(-10px);
}

/* Vidéo Téléphone d'or : format bannière 3:1 */
.service-detail-video-banner {
    width: 100%;
    max-width: 100%;
}

.service-detail-video-banner video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Galerie photo mise en avant */
.gallery-item-featured {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .cashless-block {
        flex-direction: column;
    }

    .cashless-image {
        flex: 1 1 auto;
        order: -1;
    }

    .cashless-image img {
        max-width: 100%;
    }

    .gallery-item-featured {
        grid-column: span 1;
    }

    .service-detail-images-row,
    .service-detail-images-grid {
        grid-template-columns: 1fr;
    }

    /* Polaroid mobile : alignement vertical conservé avec hauteur adaptée */
    #polaroid .service-detail {
        gap: 3rem;  /* Espacement réduit sur mobile */
    }

    #polaroid .service-detail-images-grid {
        gap: 15px;
        margin-top: 0;  /* Retirer le décalage vertical sur mobile */
    }

    #polaroid .service-detail-image {
        max-width: 100%;
    }

    #polaroid .service-detail-image img {
        height: 280px;
    }

    /* Rotations réduites sur mobile pour un effet plus subtil */
    #polaroid .service-detail-image:nth-child(1) {
        transform: rotate(-1deg);
    }

    #polaroid .service-detail-image:nth-child(3) {
        transform: rotate(1deg);
    }

    .service-detail-image-tilt,
    .service-detail-image-tilt:nth-child(2) {
        transform: none;
    }

    .service-detail-images-inclined .service-detail-image-tilt:hover,
    .service-detail-images-inclined .service-detail-image-tilt:nth-child(2):hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 247, 0.98) 100%);
        border-left: 1px solid rgba(218, 205, 188, 0.3);
        padding: 6rem 2rem 2rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(20px);
        z-index: 999;
    }

    .nav-list.nav-open {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(218, 205, 188, 0.2);
        font-size: 1.1rem;
    }

    .nav-list a::before {
        display: none;
    }

    .nav-list a.active {
        border-left: 3px solid #b8956a;
        padding-left: 1rem;
    }

    .hero {
        min-height: 90vh;
    }

    .section {
        padding: 5rem 0;
    }

    .section-page-header {
        padding: 8rem 0 3rem;
        margin-top: 70px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-side {
        position: static;
    }

    .contact-form {
        padding: 2.5rem 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image {
        min-height: 240px;
        padding: 1rem;
    }

    .service-image img {
        max-height: 350px;
    }

    .service-detail-image {
        padding: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .social-links-icons {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1.2rem 2.5rem;
    }

    .intro-content {
        padding: 2.5rem 1.5rem;
    }

    .service-card,
    .event-card {
        padding: 2.5rem 1.5rem;
    }
}
