/* 
 * Tmerelumineuse - Style principal
 * Thème: Grunge Texture Modern
 * Description: Style combinant textures vintage et design moderne
 * pour un site spécialisé dans la transformation de maisons fermières en hébergements touristiques
 */

/* ======================================
 * TABLE DES MATIÈRES
 * 
 * 1. RESET & BASE
 * 2. VARIABLES
 * 3. TYPOGRAPHIE
 * 4. LAYOUT & GRID
 * 5. NAVIGATION & SIDEBAR
 * 6. HEADER
 * 7. BOUTONS & FORMULAIRES
 * 8. SECTIONS SPÉCIFIQUES
 *    8.1 Hero
 *    8.2 Services
 *    8.3 Process
 *    8.4 Checklist
 *    8.5 Gallery
 *    8.6 Testimonials
 *    8.7 FAQ
 * 9. CARTES & CONTENEURS
 * 10. FOOTER
 * 11. MODALS & OVERLAYS
 * 12. COOKIES & RGPD
 * 13. UTILITAIRES
 * 14. ANIMATIONS
 * 15. MEDIA QUERIES
 * 16. ACCESSIBILITÉ
 * 17. PAGES SPÉCIFIQUES
 *    17.1 Page d'accueil
 *    17.2 Page Mon Expérience
 *    17.3 Page Ce que vous recevrez
 *    17.4 Page Contacts
 *    17.5 Pages légales
 *    17.6 Page Merci
 * 18. THÈME GRUNGE
 * 19. IMPRESSION
 * ====================================== */

/* ====================================== 
 * 1. RESET & BASE
 * ====================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; 
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #F8F7F4;
    min-height: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #8B5A2B;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #E2725B;
    text-decoration: underline;
}

ul, ol {
    list-style-position: inside;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}


input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ====================================== 
 * 2. VARIABLES
 * ====================================== */
:root {
    
    --color-primary: #8B5A2B;
    --color-primary-light: #A67C52;
    --color-primary-dark: #6D4522;
    
    --color-secondary: #556B2F;
    --color-secondary-light: #7A8F54;
    --color-secondary-dark: #3A4920;
    
    --color-tertiary: #E2725B;
    --color-tertiary-light: #E9917F;
    --color-tertiary-dark: #C55A44;
    
    
    --color-white: #FFFFFF;
    --color-off-white: #F8F7F4;
    --color-light-grey: #E5E5E3;
    --color-grey: #9A9A9A;
    --color-dark-grey: #555555;
    --color-black: #333333;
    
    
    --color-success: #4CAF50;
    --color-error: #F44336;
    --color-warning: #FF9800;
    --color-info: #2196F3;
    
    
    --spacing-xs: 0.4rem;
    --spacing-sm: 0.8rem;
    --spacing-md: 1.6rem;
    --spacing-lg: 2.4rem;
    --spacing-xl: 3.2rem;
    --spacing-xxl: 4.8rem;
    
    
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
    
    
    --border-radius-sm: 0.3rem;
    --border-radius-md: 0.6rem;
    --border-radius-lg: 1.2rem;
    
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    
    --z-back: -1;
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
    
    
    --sidebar-width: 28rem;
    --sidebar-width-collapsed: 8rem;
    --header-height: 6rem;
    --footer-height: auto;
    --container-max-width: 120rem;
    --section-padding: 6rem;
}

/* ====================================== 
 * 3. TYPOGRAPHIE
 * ====================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--color-black);
}

h1 {
    font-size: 4rem;
    margin-bottom: 2.4rem;
}

h2 {
    font-size: 3.2rem;
    position: relative;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.6rem;
}

.lead {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 2.4rem;
}

.small-text {
    font-size: 1.4rem;
    color: var(--color-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.6rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background-color: var(--color-tertiary);
}

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

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-tertiary {
    color: var(--color-tertiary);
}

.text-white {
    color: var(--color-white);
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ====================================== 
 * 4. LAYOUT & GRID
 * ====================================== */
.site-container {
    min-height: 100vh;
    position: relative;
}

.content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-width: 0; 
    position: relative;
    background-color: var(--color-off-white);
    min-height: 100vh;
    padding-bottom: var(--footer-height);
}

.section-padding {
    padding: var(--section-padding) 0;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}

.col {
    padding: 0 1.5rem;
    width: 100%;
}

.col-6 {
    width: 50%;
    padding: 0 1.5rem;
}

.col-4 {
    width: 33.333333%;
    padding: 0 1.5rem;
}

.col-3 {
    width: 25%;
    padding: 0 1.5rem;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

.alt-bg {
    background-color: var(--color-light-grey);
    position: relative;
}

.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23555555' fill-opacity='0.03'%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;
    z-index: 0;
}

.alt-bg > * {
    position: relative;
    z-index: 1;
}


.grid {
    display: grid;
    gap: 2.4rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ====================================== 
 * 5. NAVIGATION & SIDEBAR
 * ====================================== */
.sidebar {
    width: var(--sidebar-width);
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--color-white);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    z-index: var(--z-fixed);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    padding: 2rem 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm0-1a6 6 0 1 1 0-12 6 6 0 0 1 0 12z'/%3E%3C/g%3E%3C/svg%3E");
}

.sidebar-header {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-link {
    display: block;
    width: 100%;
    max-width: 18rem;
}

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

.close-sidebar {
    display: none;
    font-size: 2rem;
    color: var(--color-dark-grey);
}

.main-nav {
    padding: 2rem;
    flex-grow: 1;
}

.nav-item {
    margin-bottom: 1.2rem;
    position: relative;
    list-style-type: none;
}

.nav-link {
    display: block;
    padding: 1rem 0;
    font-weight: 600;
    color: var(--color-dark-grey);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-tertiary);
    transition: width var(--transition-medium);
}

.nav-item.active .nav-link {
    color: var(--color-primary);
}

.nav-item.active .nav-link::after,
.nav-link:hover::after {
    width: 3rem;
}

.nav-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 100%;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    min-width: 20rem;
    z-index: var(--z-tooltip);
    transform: translateY(-10px);
    pointer-events: none;
    left: 0;
}

.nav-item:hover .nav-dropdown {
    max-height: 30rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.nav-dropdown ul {
    padding: 1.5rem;
}

.nav-dropdown li {
    list-style: none;
    margin-bottom: 1rem;
}

.nav-dropdown a {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-dark-grey);
    font-size: 1.4rem;
    transition: color var(--transition-fast);
}

.nav-dropdown a:hover {
    color: var(--color-tertiary);
}

.sidebar-contact {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.sidebar-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.sidebar-contact address {
    font-style: normal;
}

.sidebar-contact p {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.sidebar-contact i {
    width: 2rem;
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.sidebar-footer {
    padding: 0 2rem 2rem;
}

.btn-cookie-settings {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid var(--color-light-grey);
    border-radius: var(--border-radius-md);
    font-size: 1.4rem;
    color: var(--color-dark-grey);
    margin-bottom: 1.5rem;
    transition: background-color var(--transition-fast);
}

.btn-cookie-settings:hover {
    background-color: var(--color-light-grey);
}

.btn-cookie-settings i {
    margin-right: 0.8rem;
}

.accessibility-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.accessibility-controls button {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--color-light-grey);
    color: var(--color-dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.accessibility-controls button:hover {
    background-color: var(--color-grey);
    color: var(--color-white);
}

/* ====================================== 
 * 6. HEADER
 * ====================================== */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-sm);
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    color: var(--color-dark-grey);
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
}

.phone-link i {
    margin-right: 0.8rem;
}

.visible-mobile {
    display: none;
}

/* ====================================== 
 * 7. BOUTONS & FORMULAIRES
 * ====================================== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-white);
    text-decoration: none;
}

.btn-tertiary {
    background-color: var(--color-tertiary);
    color: var(--color-white);
    border-color: var(--color-tertiary);
}

.btn-tertiary:hover {
    background-color: var(--color-tertiary-dark);
    border-color: var(--color-tertiary-dark);
    color: var(--color-white);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

.btn-text {
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.8rem;
    border: none;
}

.btn-text:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.btn-large {
    padding: 1.6rem 3.2rem;
    font-size: 1.8rem;
}

.btn-small {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.btn-full {
    width: 100%;
}

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

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--color-black);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--color-light-grey);
    border-radius: var(--border-radius-md);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}

textarea {
    min-height: 12rem;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.required {
    color: var(--color-error);
}

.form-message {
    margin-top: 0.5rem;
    font-size: 1.4rem;
}

.form-message.error {
    color: var(--color-error);
}

.form-message.success {
    color: var(--color-success);
}


.iti {
    width: 100%;
}

/* ====================================== 
 * 8. SECTIONS SPÉCIFIQUES
 * ====================================== */


.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    overflow: hidden;
    background-color: var(--color-light-grey);
}

.hero-content {
    max-width: 60rem;
    position: relative;
    z-index: 2;
    padding-right: 4rem;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--color-dark-grey);
    font-weight: 300;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
    transition: transform 0.5s ease;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-light-grey) 0%, rgba(229, 229, 227, 0) 100%);
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 20%;
    height: 100%;
    background-color: var(--color-light-grey);
    transform: skewX(-15deg);
    z-index: 1;
}


.services-section {
    padding: 8rem 4rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgba(139, 90, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--color-primary);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--color-dark-grey);
    margin-bottom: 0;
}


.process-section {
    padding: 8rem 4rem;
    background-color: var(--color-off-white);
}

.process-timeline {
    max-width: 90rem;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4rem;
    width: 2px;
    background-color: var(--color-light-grey);
}

.process-step {
    position: relative;
    padding-left: 10rem;
    padding-bottom: 4rem;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    z-index: 2;
}

.process-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
}

.process-content p {
    margin-bottom: 2rem;
}

.process-image {
    width: 100%;
    max-width: 60rem;
    height: auto;
    border-radius: var(--border-radius-md);
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}


.checklist-section {
    padding: 8rem 4rem;
    background-color: var(--color-light-grey);
}

.checklist-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.checklist-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.checklist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.checklist-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    color: var(--color-primary);
}

.checklist-card h3 i {
    margin-right: 1rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.checklist li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--color-secondary);
}


.gallery-section {
    padding: 8rem 4rem;
}

.gallery-intro {
    max-width: 80rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--color-white);
}

.gallery-image-container {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.before-after .gallery-image-container {
    position: relative;
}

.before-after .gallery-image {
    transition: opacity 0.5s ease;
}

.before-after .gallery-image.after {
    opacity: 0;
}

.before-after:hover .gallery-image.after {
    opacity: 1;
}

.gallery-caption {
    padding: 2rem;
}

.gallery-caption p {
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.4;
}


.faq-section {
    padding: 8rem 4rem;
    background-color: var(--color-off-white);
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid var(--color-light-grey);
    border-radius: var(--border-radius-md);
    background-color: var(--color-white);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(139, 90, 43, 0.05);
}

.faq-question h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    padding-right: 2rem;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer p {
    padding: 0 2rem 2rem;
    margin-bottom: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 100rem;
}


.audience-section {
    padding: 8rem 4rem;
}

.audience-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.audience-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: var(--color-primary);
}

.audience-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.audience-card p {
    color: var(--color-dark-grey);
    margin-bottom: 0;
}


.preview-section {
    padding: 8rem 4rem;
    background-color: var(--color-light-grey);
}

.preview-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
    align-items: center;
}

.preview-text {
    flex: 1;
    min-width: 30rem;
}

.preview-list {
    list-style: none;
    margin-bottom: 3rem;
}

.preview-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
}

.preview-list i {
    color: var(--color-secondary);
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.preview-image {
    flex: 1;
    min-width: 30rem;
    max-width: 50rem;
}

.preview-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}


.contact-section {
    padding: 8rem 4rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    width: 2.4rem;
    color: var(--color-primary);
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.contact-form {
    flex: 1;
    min-width: 30rem;
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--color-primary);
}

/* ====================================== 
 * 9. CARTES & CONTENEURS
 * ====================================== */
.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-text {
    margin-bottom: 1.5rem;
}

.card-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--color-light-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ====================================== 
 * 10. FOOTER
 * ====================================== */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 6rem 4rem 3rem;
    margin-left: var(--sidebar-width);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.footer-logo {
    flex: 1;
    min-width: 20rem;
    max-width: 30rem;
}

.footer-logo-img {
    width: 18rem;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-contact,
.footer-nav,
.footer-legal {
    flex: 1;
    min-width: 20rem;
}

.footer-content h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 2px;
    background-color: var(--color-tertiary);
}

.footer-content address {
    font-style: normal;
}

.footer-content p {
    margin-bottom: 1rem;
}

.footer-content a {
    color: var(--color-light-grey);
    transition: color var(--transition-fast);
}

.footer-content a:hover {
    color: var(--color-white);
}

.footer-content ul {
    list-style: none;
}

.footer-content li {
    margin-bottom: 1rem;
}

.footer-content i {
    width: 2rem;
    color: var(--color-tertiary);
    margin-right: 0.5rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom .accessibility-controls button {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.footer-bottom .accessibility-controls button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ====================================== 
 * 11. MODALS & OVERLAYS
 * ====================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    max-width: 50rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.4rem;
    color: var(--color-dark-grey);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.close-modal:hover {
    color: var(--color-black);
}

.modal-body {
    padding: 4rem;
    text-align: center;
}

.modal-icon {
    font-size: 5rem;
    color: var(--color-success);
    margin-bottom: 2rem;
}

.modal h3 {
    margin-bottom: 1.5rem;
}

.modal p {
    margin-bottom: 3rem;
}

.close-btn {
    margin-top: 1rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: var(--z-tooltip);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium), background-color var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--color-primary-dark);
}

/* ====================================== 
 * 12. COOKIES & RGPD
 * ====================================== */
.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: var(--z-modal);
    padding: 2rem;
    display: none;
}

.cookie-alert.active {
    display: block;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 2rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-settings.active {
    display: flex;
}

.cookie-settings-content {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    max-width: 60rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.cookie-types {
    margin: 3rem 0;
}

.cookie-type {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-light-grey);
}

.cookie-type:last-child {
    border-bottom: none;
}

.cookie-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-type-header h4 {
    margin-bottom: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 5rem;
    height: 2.6rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-light-grey);
    transition: var(--transition-medium);
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.8rem;
    width: 1.8rem;
    left: 0.4rem;
    bottom: 0.4rem;
    background-color: var(--color-white);
    transition: var(--transition-medium);
}

input:checked + .slider {
    background-color: var(--color-success);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-success);
}

input:checked + .slider:before {
    transform: translateX(2.4rem);
}

.slider.round {
    border-radius: 3.4rem;
}

.slider.round:before {
    border-radius: 50%;
}

.cookie-settings-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* ====================================== 
 * 13. UTILITAIRES
 * ====================================== */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-3 { margin-top: 3rem !important; }
.mt-4 { margin-top: 4rem !important; }
.mt-5 { margin-top: 5rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 3rem !important; }
.mb-4 { margin-bottom: 4rem !important; }
.mb-5 { margin-bottom: 5rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 1rem !important; }
.ml-2 { margin-left: 2rem !important; }
.ml-3 { margin-left: 3rem !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 1rem !important; }
.mr-2 { margin-right: 2rem !important; }
.mr-3 { margin-right: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 1rem !important; }
.pt-2 { padding-top: 2rem !important; }
.pt-3 { padding-top: 3rem !important; }
.pt-4 { padding-top: 4rem !important; }
.pt-5 { padding-top: 5rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 1rem !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pb-3 { padding-bottom: 3rem !important; }
.pb-4 { padding-bottom: 4rem !important; }
.pb-5 { padding-bottom: 5rem !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 1rem !important; }
.pl-2 { padding-left: 2rem !important; }
.pl-3 { padding-left: 3rem !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 1rem !important; }
.pr-2 { padding-right: 2rem !important; }
.pr-3 { padding-right: 3rem !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }

.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }

/* ====================================== 
 * 14. ANIMATIONS
 * ====================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.slide-in-up {
    animation: slideInUp 0.5s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

/* ====================================== 
 * 15. MEDIA QUERIES
 * ====================================== */
@media screen and (max-width: 1200px) {
    html {
        font-size: 60%;
    }
    
    .hero-section {
        padding: 6rem 3rem;
    }
    
    .services-section,
    .process-section,
    .checklist-section,
    .gallery-section,
    .faq-section,
    .audience-section,
    .preview-section,
    .contact-section {
        padding: 6rem 3rem;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .content {
        margin-left: 0;
    }
    
    .sidebar {
        transform: translateX(-100%);
        box-shadow: var(--shadow-lg);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .close-sidebar {
        display: block;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .visible-mobile {
        display: flex;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 30rem;
        margin-top: 3rem;
    }
    
    .hero-image::before,
    .hero-image::after {
        display: none;
    }
    
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-timeline::before {
        left: 3rem;
    }
    
    .process-step {
        padding-left: 7rem;
    }
    
    .process-number {
        width: 6rem;
        height: 6rem;
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .services-container,
    .checklist-container,
    .gallery-grid,
    .audience-container {
        grid-template-columns: 1fr;
    }
    
    .preview-content,
    .contact-container {
        flex-direction: column;
    }
    
    .preview-image {
        order: -1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    .hero-section,
    .services-section,
    .process-section,
    .checklist-section,
    .gallery-section,
    .faq-section,
    .audience-section,
    .preview-section,
    .contact-section {
        padding: 5rem 2rem;
    }
    
    .site-footer {
        padding: 5rem 2rem 2rem;
    }
    
    .process-timeline::before {
        left: 2.5rem;
    }
    
    .process-step {
        padding-left: 6rem;
    }
    
    .process-number {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-body {
        padding: 3rem 2rem;
    }
}

/* ====================================== 
 * 16. ACCESSIBILITÉ
 * ====================================== */
.high-contrast {
    filter: contrast(1.5);
}

.larger-font {
    font-size: 120%;
}

.larger-font h1 {
    font-size: 4.8rem;
}

.larger-font h2 {
    font-size: 3.8rem;
}

.larger-font h3 {
    font-size: 2.9rem;
}

.larger-font .btn {
    font-size: 1.8rem;
}


a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}


.skip-to-content {
    position: absolute;
    top: -9999px;
    left: -9999px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    z-index: var(--z-modal);
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
    left: 0;
}

/* ====================================== 
 * 17. PAGES SPÉCIFIQUES
 * ====================================== */


.home-page .hero-section {
    position: relative;
    overflow: hidden;
}

.home-page .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm0-1a6 6 0 1 1 0-12 6 6 0 0 1 0 12z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.4;
}


.experience-page .intro-section {
    padding: 6rem 4rem;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
    align-items: center;
}

.intro-text {
    flex: 1;
    min-width: 30rem;
}

.intro-image {
    flex: 1;
    min-width: 30rem;
    max-width: 50rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.expertise-section {
    padding: 8rem 4rem;
    background-color: var(--color-light-grey);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.expertise-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.expertise-icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--color-primary);
}

.expertise-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.methodology-section {
    padding: 8rem 4rem;
}

.methodology-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
    align-items: flex-start;
}

.methodology-image {
    flex: 1;
    min-width: 30rem;
    max-width: 40rem;
}

.methodology-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.methodology-steps {
    flex: 1.5;
    min-width: 30rem;
}

.methodology-step {
    margin-bottom: 3rem;
    padding-left: 5rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.methodology-step h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.portfolio-section {
    padding: 8rem 4rem;
    background-color: var(--color-light-grey);
}

.portfolio-intro {
    max-width: 80rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.portfolio-item {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.portfolio-image {
    flex: 1;
    min-width: 30rem;
    position: relative;
}

.portfolio-img,
.portfolio-img-before,
.portfolio-img-after {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-img-after {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.portfolio-image:hover .portfolio-img-after {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 1.4rem;
    font-weight: 600;
}

.portfolio-details {
    flex: 1;
    min-width: 30rem;
    padding: 3rem;
}

.portfolio-details h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.portfolio-features {
    list-style: none;
    margin-top: 2rem;
}

.portfolio-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.portfolio-features li::before {
    content: '\f111';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-tertiary);
}

.cta-section {
    padding: 8rem 4rem;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm0-1a6 6 0 1 1 0-12 6 6 0 0 1 0 12z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.cta-container h2 {
    color: var(--color-white);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-container p {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}


.deliverables-page .intro-section {
    padding: 6rem 4rem;
}

.deliverable-section {
    padding: 6rem 4rem;
}

.deliverable-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
    align-items: center;
}

.deliverable-container.reverse {
    flex-direction: row-reverse;
}

.deliverable-content {
    flex: 1.5;
    min-width: 30rem;
}

.deliverable-description h3 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--color-primary);
}

.deliverable-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.deliverable-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.deliverable-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--color-secondary);
}

.deliverable-image {
    flex: 1;
    min-width: 30rem;
    max-width: 45rem;
}

.deliverable-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.packages-section {
    padding: 8rem 4rem;
    background-color: var(--color-light-grey);
}

.packages-intro {
    max-width: 80rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.packages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.package-card {
    flex: 1;
    min-width: 30rem;
    max-width: 35rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition-medium);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 2px solid var(--color-tertiary);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 2rem;
    right: -3rem;
    background-color: var(--color-tertiary);
    color: var(--color-white);
    padding: 0.5rem 3rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.package-header {
    padding: 3rem;
    text-align: center;
    border-bottom: 1px solid var(--color-light-grey);
}

.package-header h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.package-subtitle {
    color: var(--color-grey);
    font-size: 1.5rem;
}

.package-content {
    padding: 3rem;
}

.package-features {
    list-style: none;
    margin-bottom: 0;
}

.package-features li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.package-features li i {
    width: 2rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.package-features li i.fa-check {
    color: var(--color-success);
}

.package-features li i.fa-times {
    color: var(--color-grey);
}

.package-features .feature-disabled {
    color: var(--color-grey);
}

.package-footer {
    padding: 2rem 3rem 3rem;
    text-align: center;
}

.packages-note {
    max-width: 80rem;
    margin: 4rem auto 0;
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-dark-grey);
}


.contacts-page .contact-hero {
    padding: 6rem 4rem;
    text-align: center;
}

.contact-hero-content {
    max-width: 80rem;
    margin: 0 auto;
}

.contact-details-section {
    padding: 6rem 4rem;
    background-color: var(--color-light-grey);
}

.contact-details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: var(--color-primary);
}

.contact-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-card address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.contact-note {
    font-size: 1.4rem;
    color: var(--color-dark-grey);
    margin-top: 1.5rem;
}

.hours-section {
    padding: 6rem 4rem;
}

.hours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.hours-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.hours-card h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hours-table {
    width: 100%;
    margin-bottom: 2rem;
}

.hours-table td {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-light-grey);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-note {
    font-size: 1.4rem;
    color: var(--color-dark-grey);
}

.response-times {
    list-style: none;
    margin-bottom: 2rem;
}

.response-times li {
    margin-bottom: 1.2rem;
}

.response-channel {
    font-weight: 600;
    color: var(--color-primary);
}

.map-section {
    padding: 6rem 4rem;
    background-color: var(--color-light-grey);
}

.map-container {
    max-width: 120rem;
    margin: 0 auto 4rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 45rem;
    border: none;
}

.directions h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.directions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.direction-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.direction-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--color-primary);
}

.direction-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.contact-cta {
    padding: 6rem 4rem;
}


.legal-page .legal-content {
    max-width: 90rem;
    margin: 0 auto;
    padding: 6rem 4rem;
}

.legal-date {
    margin-bottom: 3rem;
    font-style: italic;
    color: var(--color-grey);
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
}

.legal-section ul, 
.legal-section ol {
    margin-bottom: 2rem;
    margin-left: 2rem;
}

.legal-section li {
    margin-bottom: 1rem;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th, 
.cookie-table td {
    padding: 1.2rem;
    border: 1px solid var(--color-light-grey);
    text-align: left;
}

.cookie-table th {
    background-color: rgba(139, 90, 43, 0.1);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}


.thanks-page .thanks-section {
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem;
}

.thanks-container {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 5rem;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    font-size: 6rem;
    color: var(--color-success);
    margin-bottom: 2rem;
}

.thanks-container h1 {
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.additional-info {
    margin-bottom: 3rem;
    color: var(--color-dark-grey);
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ====================================== 
 * 18. THÈME GRUNGE
 * ====================================== */

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}


.card, .service-item, .checklist-card, .audience-card, .expertise-card, 
.contact-card, .faq-item, .gallery-item, .portfolio-item, .package-card,
.contact-form, .thanks-container, .deliverable-container .deliverable-image img {
    position: relative;
}

.card::before, .service-item::before, .checklist-card::before, .audience-card::before, 
.expertise-card::before, .contact-card::before, .faq-item::before, .gallery-item::before, 
.portfolio-item::before, .package-card::before, .contact-form::before, .thanks-container::before,
.deliverable-container .deliverable-image img::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    z-index: -1;
    border-radius: calc(var(--border-radius-md) + 2px);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}


.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::before, .btn-tertiary::before {
    opacity: 0.1;
}

.btn-outline::before {
    opacity: 0;
}

.btn-outline:hover::before {
    opacity: 0.1;
}


.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23F8F7F4'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 10;
}

.alt-bg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23F8F7F4'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    transform: rotate(180deg);
    z-index: 10;
}


.section-title {
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15rem;
    height: 4rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm0-1a6 6 0 1 1 0-12 6 6 0 0 1 0 12z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.5;
    filter: blur(1px);
}

/* ====================================== 
 * 19. IMPRESSION
 * ====================================== */
@media print {
    body {
        font-size: 12pt;
        background: white;
    }
    
    .sidebar, .site-header, .cookie-alert, .cookie-settings, 
    .scroll-to-top, .modal, .btn, .nav-dropdown {
        display: none !important;
    }
    
    .content {
        margin-left: 0;
        width: 100%;
    }
    
    .site-footer {
        background-color: white;
        color: black;
        border-top: 1px solid #ddd;
    }
    
    .footer-content h3::after {
        background-color: #555;
    }
    
    .footer-content a, .footer-content i {
        color: #555;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    p, blockquote, ul, ol, dl, table {
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 90%;
        color: #555;
    }
    
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }
}