/* ================================================
   LIROM CHAPES SA — Design System
   Palette : #111111 (dark), #ee7408 (orange), #ffffff (blanc)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

:root {
    --orange: #ee7408;
    --black: #111111;
    --white: #FFFFFF;
    --orange-lirom: #ee7408;
    --black-lirom: #111111;
    --white-lirom: #FFFFFF;
    --gold: #ee7408;
    --gold-light: #ee7408;
    --gold-dark: #ee7408;
    --orange-vif: #ee7408;
    --dark: #111111;
    --noir-pur: #111111;
    --blanc: #ffffff;
    --dark-soft: #1e1e1e;
    --dark-mid: #2a2a2a;
    --white: #ffffff;
    --off-white: #f7f4ef;
    --gray-light: #ececec;
    --gray-text: #888888;
    --transition: all 0.35s ease;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.13);
    --orange-primary: #f07e1a;
    --orange: #ee7408;
    --white: #FFFFFF;
    --dark: #111111;
    --transition: all 0.35s ease;
    --font-serif-lirom: 'Playfair Display', serif;
    --font-sans-alt: 'Montserrat', sans-serif;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    border-radius: 10px;
    border: 3px solid var(--dark);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--orange);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) var(--dark);
}

.separator {
    height: 2px;
    background-color: var(--orange-vif);
    margin: 40px 0;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Taille de base augmentée : 16px → 18px */
    font-size: 18px;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* Taille de base du corps augmentée */
    font-size: 1.1rem;
    width: 100%;
    overflow-x: hidden;
    color: var(--dark);
    background: var(--white);
}

/* ================================================
   HEADER
   ================================================ */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: var(--white);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--gold);
    transition: var(--transition);
}

.main-header.scrolled {
    height: 75px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo img {
    height: 56px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

/* Nav links : 0.78rem → 0.95rem */
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--gold) !important;
    color: var(--dark) !important;
    padding: 12px 26px !important;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: var(--transition) !important;
}

.nav-btn::after {
    display: none !important;
}

.nav-btn:hover {
    background: var(--gold-light) !important;
    color: var(--dark) !important;
    transform: translateY(-1px);
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    width: 100%;
    padding-bottom: 50px;
    background: url('/public/images/imeuble.png') center center / cover no-repeat;
    display: flex;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 120px 20px 40px;
    display: flex;
    flex-direction: column;
}

/* Hero top bar : clamp(36px,5vw,48px) → clamp(44px,6vw,60px) */
.hero-top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: auto;
    padding-top: 10px;
    font-family: var(--font-sans-alt);
}

.hero-top-bar span:not(.hero-dot) {
    color: #ffffff;
    text-transform: uppercase;
    font-size: clamp(36px, 2vw, 60px);
    letter-spacing: 0.15em;
    font-weight: 400;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background-color: var(--orange-lirom);
    border-radius: 50%;
    display: inline-block;
}

.hero-center-block {
    text-align: center;
    margin-bottom: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Hero brand : clamp(70px,12vw,130px) → clamp(90px,14vw,160px) */
.hero-brand {
    font-family: var(--font-serif-lirom);
    font-size: clamp(90px, 14vw, 160px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

/* Hero slogan : clamp(18px,2.5vw,26px) → clamp(22px,3vw,34px) */
.hero-slogan {
    font-family: var(--font-serif-lirom);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(22px, 3vw, 34px);
    max-width: 800px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    margin-top: 25px;
}

/* Bouton CTA : clamp(14px,1.8vw,18px) → clamp(17px,2.2vw,24px) */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--orange-lirom);
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-sans-alt);
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 20px 42px;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.btn-arrow {
    font-size: 1.2em;
    transition: var(--transition);
}

.btn-main:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-main:hover .btn-arrow {
    transform: translateX(5px);
}

/* ================================================
   BOUTON APPEL
   ================================================ */
.btn-call-new {
    display: inline-flex;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    /* Texte augmenté */
    font-size: 1rem;
    padding: 10px 10px 10px 28px;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: none;
}

.btn-icon svg {
    width: 22px;
    height: 22px;
}

.btn-icon {
    background-color: var(--orange);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 15px;
    flex-shrink: 0;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.btn-call-new:hover {
    background-color: var(--orange);
    padding-right: 18px;
}

.btn-call-new:hover .btn-icon {
    background-color: var(--black);
    transform: rotate(-45deg);
}

/* ================================================
   NOS MÉTIERS
   ================================================ */
.nos-metiers-section {
    padding: 80px 0;
    background-color: var(--blanc);
}

.metier-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.metier-row.reverse {
    flex-direction: row-reverse;
}

.metier-image {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
}

.metier-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.metier-image:hover img {
    transform: scale(1.05);
}

.metier-content {
    flex: 1;
    padding: 20px;
}

/* Numéro : 3rem → 4rem */
.metier-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 95, 0, 0.1);
    display: block;
    line-height: 1;
    margin-bottom: -20px;
}

/* Titre métier : 2.2rem → 2.8rem */
.metier-content h3 {
    font-size: 2.8rem;
    color: var(--noir-pur);
    margin-bottom: 20px;
    position: relative;
}

.metier-content h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--orange-vif);
    margin-top: 10px;
}

/* Texte métier : 1.1rem → 1.3rem */
.metier-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Bouton métier : 0.9rem → 1.1rem */
.btn-metier {
    display: inline-block;
    color: var(--noir-pur);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.btn-metier:hover {
    color: var(--orange-vif);
}

.btn-metier .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-metier:hover .arrow {
    transform: translateX(5px);
}

/* ================================================
   PAGE CONTACT
   ================================================ */
.contact-page-wrapper {
    font-family: sans-serif;
    overflow-x: hidden;
}

.contact-hero {
    background-color: var(--white);
    padding: 120px 20px 80px 20px;
    display: flex;
    justify-content: center;
}

.hero-container {
    max-width: 1100px;
    width: 100%;
    position: relative;
}

/* Bouton call : padding et police augmentés */
.btn-call {
    background-color: var(--orange-lirom);
    color: var(--white-lirom);
    padding: 22px 42px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.access-section {
    background-color: var(--black-lirom);
    color: var(--white-lirom);
    padding: 60px 20px;
}

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Titre info-box : 1.5rem → 1.9rem */
.info-box h2 {
    border-left: 4px solid var(--orange-lirom);
    padding-left: 15px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 1.9rem;
}

/* Texte paragraphes access : augmenté */
.access-section p,
.info-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-orange {
    color: var(--orange-lirom);
    font-weight: bold;
}

.map-container {
    filter: grayscale(100%) invert(90%) contrast(150%);
    border: 1px solid #333;
    height: 300px;
    width: 100%;
}

.form-section {
    background-color: var(--white-lirom);
    padding: 80px 20px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Titre formulaire : clamp(1.8rem,5vw,2.5rem) → clamp(2.2rem,5vw,3rem) */
.form-container h2 {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 40px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Inputs : police augmentée */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
    border: 1px solid var(--black-lirom);
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange-lirom);
}

.full-width {
    grid-column: span 2;
}

/* Bouton envoi : 1.1rem */
.btn-send {
    background-color: var(--orange-lirom);
    color: var(--white-lirom);
    border: none;
    padding: 22px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    grid-column: span 2;
    transition: background-color 0.3s;
}

.btn-send:hover {
    background-color: #e65c00;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* hero-eyebrow : 1rem → 1.2rem */
.hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

/* hero h1 : 3.2rem → 4rem */
.hero h1 {
    font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.15;
}

/* hero p : 1.05rem → 1.25rem */
.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 35px;
}

.dot {
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Texte scroll : 0.7rem → 0.9rem */
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ================================================
   CHIFFRES CLÉS
   ================================================ */
.stats-section {
    background: var(--dark);
    padding: 70px 40px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 40px 10px;
    border-right: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

/* stat-number : 4rem → 5rem */
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}

/* stat-suffix : 2rem → 2.5rem */
.stat-suffix {
    font-size: 2.5rem;
    color: var(--gold-light);
}

/* stat-label : 0.75rem → 0.95rem */
.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* ================================================
   SECTION GÉNÉRIQUE — titre
   ================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* section-eyebrow : 0.72rem → 0.9rem */
.section-eyebrow {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* hero-title : clamp(3rem,10vw,6rem) → clamp(3.5rem,11vw,7rem) */
.hero-title {
    font-size: clamp(3.5rem, 11vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.text-outline {
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
}

.dot {
    color: var(--orange);
}

/* section-title : 2.6rem → 3.2rem */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

/* section-subtitle : 0.92rem → 1.1rem */
.section-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.section-divider-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ================================================
   SERVICES / MÉTIERS
   ================================================ */
.services-section {
    padding: 100px 40px;
    background: var(--off-white);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 55px 40px;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Titre service card : 1.45rem → 1.75rem */
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

/* Texte service card : 0.88rem → 1.05rem */
.service-card p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* Lien service : 0.78rem → 0.95rem */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 14px;
}

/* ================================================
   SLIDER RÉALISATIONS
   ================================================ */
.slider-section {
    padding: 100px 0;
    background: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 20px;
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.slider-item {
    position: relative;
    min-width: 320px;
    height: 420px;
    overflow: hidden;
    flex-shrink: 0;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slider-item:hover img {
    transform: scale(1.07);
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.slider-item:hover .slider-caption {
    opacity: 1;
}

/* Titre caption : 1rem → 1.2rem */
.slider-caption h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* Bouton more : 0.75rem → 0.95rem */
.btn-more {
    align-self: flex-start;
    padding: 11px 24px;
    border: 1px solid var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-more:hover {
    background: var(--gold);
    color: var(--dark);
}

.nav-btn-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.3rem;
    transition: var(--transition);
}

.nav-btn-slider:hover {
    background: var(--gold);
    color: var(--dark);
}

.prev {
    left: 5px;
}

.next {
    right: 5px;
}

/* ================================================
   POURQUOI NOUS — valeurs
   ================================================ */
.values-section {
    padding: 100px 40px;
    background: var(--dark);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

/* value-number : 3.5rem → 4.5rem */
.value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: rgba(197, 160, 89, 0.15);
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: -10px;
}

/* value h3 : 1.3rem → 1.6rem */
.value-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 600;
}

/* value p : 0.85rem → 1.05rem */
.value-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ================================================
   CTA FINALE
   ================================================ */
.cta-section {
    padding: 110px 40px;
    background: var(--off-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: 'LIROM';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
}

/* CTA title : 3rem → 3.8rem */
.cta-section .section-title {
    font-size: 3.8rem;
}

/* CTA p : 1rem → 1.2rem */
.cta-section p {
    color: var(--gray-text);
    font-size: 1.2rem;
    max-width: 480px;
    margin: 20px auto 40px;
    line-height: 1.7;
}

/* Boutons CTA : 0.82rem → 1rem */
.btn-cta-dark {
    display: inline-block;
    padding: 20px 56px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid var(--dark);
    transition: var(--transition);
    margin-right: 16px;
}

.btn-cta-dark:hover {
    background: transparent;
    color: var(--dark);
}

.btn-cta-outline {
    display: inline-block;
    padding: 20px 56px;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ================================================
   FOOTER
   ================================================ */
.main-footer {
    background: var(--dark-soft);
    color: var(--white);
    padding: 80px 40px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 22px;
}

.sponsoring-footer-block {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 95, 0, 0.04);
    border-left: 3px solid #FF5F00;
    border-radius: 0 4px 4px 0;
}

/* label-engagement : 0.65rem → 0.82rem */
.label-engagement {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FF5F00;
    margin-bottom: 6px;
}

/* link-sponsoring : 0.85rem → 1.05rem */
.link-sponsoring {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white-lirom);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-sponsoring svg {
    transition: transform 0.3s ease;
}

.link-sponsoring:hover {
    color: #FF5F00;
}

.link-sponsoring:hover svg {
    transform: translateX(5px);
}

/* footer col p : 0.85rem → 1.05rem */
.footer-col>p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* footer col h3 : 1.1rem → 1.35rem */
.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* footer liens : 0.85rem → 1.05rem */
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* footer contact p : 0.85rem → 1.05rem */
.footer-contact-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* footer social : 0.75rem → 0.95rem */
.footer-social a {
    font-size: 0.95rem;
    text-decoration: none;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FF5F00;
}

/* footer-bottom : 0.78rem → 0.95rem */
.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.93);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.lightbox img {
    max-width: 88%;
    max-height: 80vh;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* lightbox close : 2rem → 2.5rem */
.lightbox-close {
    position: absolute;
    top: 28px;
    right: 36px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
}

/* ================================================
   HERO STATS
   ================================================ */
.hero-stats-container {
    margin-top: 40px;
    max-width: 600px;
}

/* stats-intro : 11px → 14px */
.stats-intro {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-weight: 600;
}

.stats-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* stat-number hero : 38px → 50px */
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-number small {
    font-size: 20px;
    margin-left: 4px;
    color: var(--orange);
}

/* stat-label hero : 12px → 15px */
.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    text-transform: lowercase;
    font-variant: small-caps;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* ================================================
    Page index
   ================================================ */
/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    animation: lb-in 0.25s ease;
}

@keyframes lb-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 30px;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.realisation-item {
    cursor: pointer;
}

/* ================================================
   SECTION MÉTIERS INDEX
   ================================================ */
.metiers-index-section {
    padding: 100px 40px;
    background: #fff;
}

.metiers-index-container {
    max-width: 1200px;
    margin: 0 auto;
}

.metiers-index-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

.metiers-index-intro-left .section-eyebrow {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.metiers-index-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0;
}

.metiers-index-intro-right {
    max-width: 380px;
    text-align: right;
}

.metiers-index-intro-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

.metiers-index-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.metiers-index-link:hover {
    color: var(--orange);
}

/* Grid 3 cartes avec photo */
.metiers-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.metier-index-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eee;
    transition: box-shadow 0.3s, transform 0.3s;
    overflow: hidden;
}

.metier-index-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.metier-index-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.metier-index-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.metier-index-card:hover .metier-index-img-wrap img {
    transform: scale(1.05);
}

.metier-index-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.metier-index-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
}

.metier-index-name {
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    line-height: 1.3;
    margin: 0;
}

.metier-index-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.metier-index-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-top: 10px;
    transition: color 0.3s;
}

.metier-index-card:hover .metier-index-cta {
    color: var(--orange);
}

.mi-arrow {
    transition: transform 0.3s;
}

.metier-index-card:hover .mi-arrow {
    transform: translateX(4px);
}

/* Bouton brochure orange centré */
.metiers-index-brochure {
    text-align: center;
    margin-top: 20px;
}

.btn-brochure-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border-radius: 2px;
    border: 2px solid var(--orange);
    transition: background 0.3s, color 0.3s;
}

.btn-brochure-orange:hover {
    background: transparent;
    color: var(--orange);
}


/* ================================================
    Page métier 
   ================================================ */

/* ================================================
   RÉALISATIONS
   ================================================ */
.realisations-section {
    background: #111;
    padding: 80px 40px;
}

.realisations-header {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.realisations-header .section-eyebrow {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.realisations-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.realisations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    height: 340px;
}

.realisation-item {
    overflow: hidden;
}

.realisation-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: transform 0.5s ease, filter 0.4s;
}

.realisation-item:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

/* ================================================
   À PROPOS + STATS
   ================================================ */
.apropos-section {
    background: var(--off-white, #f7f4ef);
    padding: 90px 40px;
}

.apropos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.apropos-left .section-eyebrow {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.apropos-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.apropos-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.apropos-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.apropos-link:hover {
    color: var(--orange);
}

.apropos-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.apropos-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
}

.apropos-stat-icon {
    color: #555;
    margin-bottom: 6px;
}

.apropos-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    line-height: 1;
    color: var(--orange);
}

.apropos-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    line-height: 1.5;
}

/* ================================================
   VALEURS TIMELINE
   ================================================ */
.valeurs-timeline-section {
    --orange-lirom: #E67E22;
    --black-lirom: #1A1A1A;
    --white: #FFFFFF;
    background: var(--white);
    padding: 120px 20px;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.container-valeurs {
    max-width: 1100px;
    margin: 0 auto;
}

.valeurs-header {
    text-align: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.valeurs-header.active {
    opacity: 1;
    transform: translateY(0);
}

.valeurs-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.label-bar {
    width: 30px;
    height: 2px;
    background: var(--orange-lirom);
}

.label-text {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--orange-lirom);
}

.valeurs-main-title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    color: var(--black-lirom);
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
}

.valeurs-intro {
    max-width: 650px;
    margin: 0 auto;
    color: #555;
    font-size: 17px;
    font-weight: 300;
}

/* ================================================
   VALEURS DUO (2 cartes côte à côte avec point central)
   ================================================ */
.valeurs-duo-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0 40px;
    padding: 20px 0 40px;
}

.timeline-line-center {
    display: none;
    /* ligne verticale remplacée par séparation visuelle du dot */
}

.valeur-duo-item {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.valeur-duo-left {
    transform: translateX(-60px);
    text-align: right;
}

.valeur-duo-right {
    transform: translateX(60px);
    text-align: left;
}

.valeur-duo-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* Le point central noir avec bordure orange */
.valeur-duo-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s 0.4s ease, transform 0.5s 0.4s ease;
    transform: scale(0);
}

.valeur-duo-dot.active {
    opacity: 1;
    transform: scale(1);
}

.duo-dot-inner {
    width: 52px;
    height: 52px;
    background: #111;
    border: 4px solid var(--orange-lirom, #E67E22);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Carte valeur : accent-line à gauche pour droite, à droite pour gauche */
.valeur-duo-left .card-accent-line {
    margin-left: auto;
}

.valeur-duo-right .card-accent-line {
    margin-left: 0;
}

.valeur-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.valeur-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-accent-line {
    width: 40px;
    height: 3px;
    background: var(--orange-lirom);
    margin-bottom: 20px;
    display: inline-block;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-lirom);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .apropos-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .apropos-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 850px) {
    .metiers-index-grid {
        grid-template-columns: 1fr;
    }

    .metiers-index-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .metiers-index-intro-right {
        text-align: left;
        max-width: 100%;
    }

    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .realisation-item {
        height: 200px;
    }

    /* Valeurs duo mobile : empilé */
    .valeurs-duo-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px 0;
    }

    .valeur-duo-left,
    .valeur-duo-right {
        text-align: left !important;
        transform: translateY(30px) !important;
    }

    .valeur-duo-left.active,
    .valeur-duo-right.active {
        transform: translateY(0) !important;
    }

    .valeur-duo-left .card-accent-line {
        margin-left: 0;
    }

    .valeur-duo-dot {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {

    .metiers-index-section,
    .realisations-section,
    .apropos-section {
        padding: 60px 20px;
    }

    .apropos-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .realisation-item {
        height: 220px;
    }
}

/* ================================================
    Page faq 
   ================================================ */
.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-category-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--orange);
    flex-shrink: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-question.open {
    color: var(--orange);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--orange);
    transition: transform 0.35s ease, background 0.3s ease;
    font-weight: 300;
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 600px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.85;
    padding-right: 50px;
}

.faq-answer p+p {
    margin-top: 12px;
}

/* ================================================
       LAYOUT PRINCIPAL
       ================================================ */
.faq-layout {
    padding: 80px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    align-items: start;
}

/* Sidebar */
.faq-sidebar {
    position: sticky;
    top: 110px;
}

.faq-sidebar-block {
    padding: 40px;
    margin-bottom: 24px;
}

.faq-sidebar-block h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 16px;
}

.faq-sidebar-block p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-sidebar-map {
    overflow: hidden;
    border-top: 3px solid var(--orange);
}

.faq-sidebar-map img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faq-sidebar-map:hover img {
    transform: scale(1.03);
}

/* ================================================
       RESPONSIVE
       ================================================ */

/* Tablette */
@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr 260px;
        gap: 48px;
        padding: 60px 24px 80px;
    }

    .faq-sidebar-map img {
        height: 300px;
        object-fit: cover;
        object-position: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px 70px;
    }

    .faq-sidebar {
        position: static;
    }

    /* Sidebar en bas sur mobile, réduite */
    .faq-sidebar-block {
        padding: 28px 24px;
    }

    .faq-answer p {
        padding-right: 10px;
    }

    .faq-question {
        font-size: 0.88rem;
        padding: 18px 0;
    }

    .faq-sidebar-map {
        border-top: 3px solid var(--orange);
    }

    .faq-sidebar-map img {
        /* --- MODIFICATIONS ICI --- */
        width: 100%;
        /* Prend toute la largeur */
        height: auto;
        /* Ajuste la hauteur automatiquement pour conserver les proportions */
        max-height: none;
        /* Enlève la limitation de hauteur */
        object-fit: contain;
        /* S'assure que toute l'image est visible */
        object-position: center;
        /* Centre l'image */
        padding: 10px;
        /* Optionnel : ajoute un petit espace autour de la carte */
        box-sizing: border-box;
        /* Assure que le padding est inclus dans la largeur */
        /* ------------------------- */
    }
}

@media (max-width: 480px) {
    .faq-layout {
        padding: 40px 16px 60px;
    }
}

/* ================================================
    Page contact 
   ================================================ */
.status-msg {
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 500;
    border-radius: 4px;
}

.status-msg.success {
    background: #e6f4ea;
    color: #137333;
    border-left: 4px solid #137333;
}

.status-msg.error {
    background: #fce8e6;
    color: #c5221f;
    border-left: 4px solid #c5221f;
}

/* ================================================
    Page about 
   ================================================ */

.text-outline {
    -webkit-text-stroke: 2px var(--orange);
    color: transparent;
}

/* ================================================
    SECTION ÉQUIPE SOUDÉE
    ================================================ */
.team-unity-section {
    padding: 80px 0;
    background: #fff;
}

.team-unity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-unity-content {
    text-align: center;
    margin-bottom: 40px;
}

.team-unity-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-top: 10px;
}

.team-unity-content p {
    max-width: 650px;
    margin: 20px auto 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.team-full-photo {
    width: 100%;
    height: clamp(220px, 40vw, 600px);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.team-full-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
}

.team-full-photo:hover img {
    transform: scale(1.03);
}

.team-full-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* ================================================
    SECTION ÉQUIPE EN ACTION
    ================================================ */
.team-action-section {
    background: var(--dark);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.team-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.team-action-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.team-action-header-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-top: 14px;
}

.team-action-header-left h2 em {
    font-style: italic;
    color: var(--orange);
}

.team-action-header-right {
    max-width: 380px;
    flex-shrink: 0;
}

.team-action-header-right p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    border-left: 2px solid var(--orange);
    padding-left: 20px;
}

/* ================================================
    BANDES DÉFILANTES
    ================================================ */
.ticker-track-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.ticker-track-wrapper::before,
.ticker-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ticker-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.ticker-track-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark), transparent);
}

.ticker-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
}

.ticker-track-wrapper:nth-child(3) .ticker-track {
    animation: tickerScrollReverse 38s linear infinite;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes tickerScrollReverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.ticker-track-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

/* Carte photo */
.team-photo-card {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.team-photo-card.tall {
    width: 200px;
    height: 300px;
}

.team-photo-card.wide {
    width: 300px;
    height: 220px;
}

.team-photo-card.square {
    width: 240px;
    height: 240px;
}

.team-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: grayscale(20%) brightness(0.85);
}

.team-photo-card:hover img {
    transform: scale(1.07);
    filter: grayscale(0%) brightness(1);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.team-photo-card:hover .team-photo-overlay {
    opacity: 1;
}

.team-photo-caption {
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.team-photo-card:hover .team-photo-caption {
    transform: translateY(0);
}

.team-photo-caption span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 4px;
}

.team-photo-caption p {
    font-size: 0.82rem;
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

/* ================================================
   VALEURS TIMELINE
   ================================================ */
.valeurs-timeline-section {
    --orange-lirom: #E67E22;
    --black-lirom: #1A1A1A;
    --white: #FFFFFF;
    background: var(--white);
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.container-valeurs {
    max-width: 1100px;
    margin: 0 auto;
}

.valeurs-header {
    text-align: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.valeurs-header.active {
    opacity: 1;
    transform: translateY(0);
}

.valeurs-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.label-bar {
    width: 30px;
    height: 2px;
    background: var(--orange-lirom);
}

.label-text {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--orange-lirom);
}

.valeurs-main-title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    color: var(--black-lirom);
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
}

.valeurs-intro {
    max-width: 650px;
    margin: 0 auto;
    color: #555;
    font-size: 17px;
    font-weight: 300;
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #EEE;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 80px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.left {
    left: 0;
    padding-right: 60px;
    transform: translateX(-100px);
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
    transform: translateX(100px);
    text-align: left;
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    top: 5px;
    width: 44px;
    height: 44px;
    background: var(--black-lirom);
    color: var(--white);
    border: 4px solid var(--orange-lirom);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 5;
    transform: scale(0);
    transition: transform 0.4s 0.2s ease;
}

.timeline-item.active .timeline-dot {
    transform: scale(1);
}

.left .timeline-dot {
    right: -22px;
}

.right .timeline-dot {
    left: -22px;
}

.valeur-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.valeur-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-accent-line {
    width: 40px;
    height: 3px;
    background: var(--orange-lirom);
    margin-bottom: 20px;
    display: inline-block;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-lirom);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .apropos-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .apropos-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 850px) {
    .metiers-index-grid {
        grid-template-columns: 1fr;
    }

    .metiers-index-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .metiers-index-intro-right {
        text-align: left;
        max-width: 100%;
    }

    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .realisation-item {
        height: 200px;
    }

    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        text-align: left !important;
        padding: 0 0 0 50px !important;
        transform: translateX(50px) !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-dot {
        left: 3px !important;
        width: 34px;
        height: 34px;
    }

    .left .card-accent-line {
        margin-left: 0;
    }
}

@media (max-width: 600px) {

    .metiers-index-section,
    .realisations-section,
    .apropos-section {
        padding: 60px 20px;
    }

    .apropos-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .realisation-item {
        height: 220px;
    }
}

.metier-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.metier-modal-backdrop.active {
    display: block;
}

.metier-modal {
    position: relative;
    max-width: 1100px;
    margin: 40px auto;
    background: #111;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.modal-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
}

.modal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 50px;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, transparent 60%);
}

.modal-hero-overlay .modal-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.modal-hero-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin: 0;
}

.modal-body {
    padding: 50px 50px 60px;
}

.modal-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    border-left: 3px solid var(--orange);
    padding-left: 24px;
    margin-bottom: 50px;
    max-width: 700px;
}

.modal-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 50px;
}

.process-step {
    background: #1a1a1a;
    padding: 32px 28px;
}

.process-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 12px;
}

.process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

.modal-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 2px;
    margin-bottom: 50px;
}

.modal-gallery-item {
    overflow: hidden;
    position: relative;
}

.modal-gallery-item:first-child {
    grid-row: 1 / 3;
}

.modal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(15%) brightness(0.8);
}

.modal-gallery-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1);
}

.modal-gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.85), transparent);
    padding: 16px 16px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-gallery-item:hover .modal-gallery-label {
    opacity: 1;
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 50px;
}

.modal-stat {
    background: #1a1a1a;
    padding: 28px 24px;
    text-align: center;
}

.modal-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    display: block;
}

.modal-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    display: block;
}

.modal-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
}

.modal-cta p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 460px;
    margin: 0;
}

.modal-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.modal-cta a:hover {
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .modal-body {
        padding: 36px 36px 48px;
    }

    .modal-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }

    .modal-gallery-item:first-child {
        grid-row: auto;
    }

    .modal-process {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .metier-modal {
        margin: 0;
    }

    .modal-hero-img {
        height: 260px;
    }

    .modal-hero-overlay {
        height: 260px;
        padding: 24px;
    }

    .modal-body {
        padding: 28px 20px 40px;
    }

    .modal-intro {
        font-size: 0.92rem;
    }

    .modal-process {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
    }

    .modal-stats {
        grid-template-columns: 1fr;
    }

    .modal-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .modal-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 160px);
    }

    .modal-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================================================
Page portfolio
   ================================================ */
/* ================================================
       FILTRES
       ================================================ */
.filter-bar {
    padding: 50px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-text);
    font-weight: 600;
    margin-right: 10px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--gray-light);
    padding: 8px 22px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-text);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* ================================================
       GRILLE
       ================================================ */
.portfolio-section {
    padding: 30px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.project-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.project-card.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    position: absolute;
}

.project-card-img {
    height: 300px;
    overflow: hidden;
    background: #ddd;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.88);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
    text-align: center;
}

.project-overlay-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.project-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--white);
    margin-bottom: 10px;
}

.project-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-stat span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
}

.project-stat small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-overlay a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    border-bottom: 1px solid var(--orange);
    padding-bottom: 4px;
    text-decoration: none;
    font-weight: 600;
}

.project-caption {
    padding: 20px 24px;
    border-left: 3px solid var(--orange);
}

.project-caption-cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    font-weight: 600;
}

.project-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--dark);
    margin-top: 4px;
}

.project-caption p {
    font-size: 0.78rem;
    color: var(--gray-text);
    margin-top: 4px;
}

/* ================================================
       STATS
       ================================================ */
.stats-section {
    background: var(--dark);
    padding: 70px 40px;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-cell {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-cell:last-child {
    border-right: none;
}

.stat-cell span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--orange);
    display: block;
    line-height: 1;
}

.stat-cell small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    display: block;
}

/* ================================================
       RESPONSIVE
       ================================================ */

/* Tablette large */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cell:nth-child(2) {
        border-right: none;
    }

    .stat-cell:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-cell:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* Tablette */
@media (max-width: 768px) {
    .filter-bar {
        padding: 36px 20px 16px;
    }

    .filter-label {
        width: 100%;
        margin-right: 0;
    }

    .portfolio-section {
        padding: 20px 20px 70px;
    }

    .project-card-img {
        height: 240px;
    }

    .stats-section {
        padding: 50px 20px;
    }

    .stat-cell {
        padding: 28px 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-card-img {
        height: 220px;
    }

    /* Sur mobile, on affiche l'overlay en statique sous l'image
           plutôt que le hover (inaccessible au touch) */
    .project-overlay {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .filter-bar {
        padding: 28px 16px 12px;
    }

    .portfolio-section {
        padding: 16px 16px 60px;
    }

    .stats-section {
        padding: 40px 16px;
    }
}

/* ================================================
    SECTION HISTOIRE
    ================================================ */
.histoire-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.histoire-section .col-text {
    flex: 1;
}

.histoire-section .col-img {
    flex: 1;
    position: relative;
}

.histoire-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin: 16px 0 28px;
    line-height: 1.15;
}

.histoire-section p {
    color: #555;
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 24px;
}

.stats-row {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.stat-item span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    display: block;
}

.stat-item-1 span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 3.5rem);
    font-weight: 100;
    color: var(--white);
    line-height: 1;
    display: block;
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-text);
    margin-top: 4px;
    margin-bottom: 0;
}

.histoire-section .col-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.histoire-quote {
    position: absolute;
    bottom: -30px;
    left: -24px;
    background: var(--orange);
    padding: 24px;
    color: var(--white);
    max-width: 240px;
}

.histoire-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
}

/* ================================================
    RESPONSIVE
    ================================================ */

/* Tablette (~768–1024px) */
@media (max-width: 1024px) {
    .team-action-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-action-header-right {
        max-width: 100%;
    }

    .histoire-section {
        gap: 40px;
    }

    .histoire-quote {
        left: -12px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {

    /* Hero */
    section[style*="padding: 160px"] {
        padding: 120px 20px 70px !important;
    }

    /* Team unity */
    .team-unity-section {
        padding: 60px 0;
    }

    .team-unity-content h2 br {
        display: none;
    }

    /* Action header */
    .team-action-section {
        padding: 60px 0;
    }

    .team-action-header {
        margin-bottom: 36px;
    }

    /* Carrousel : cartes plus petites */
    .team-photo-card.tall {
        width: 150px;
        height: 220px;
    }

    .team-photo-card.wide {
        width: 220px;
        height: 160px;
    }

    .team-photo-card.square {
        width: 180px;
        height: 180px;
    }

    .ticker-track {
        gap: 12px;
    }

    /* Histoire section : empilé */
    .histoire-section {
        flex-direction: column;
        padding: 60px 24px 80px;
    }

    .histoire-section .col-img {
        width: 100%;
        margin-bottom: 40px;
    }

    .histoire-section .col-img img {
        height: 300px;
    }

    .histoire-quote {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: -4px;
    }

    .stats-row {
        gap: 16px;
    }
}

/* Petit mobile (≤480px) */
@media (max-width: 480px) {
    .team-action-header {
        padding: 0 16px;
    }

    .team-unity-container {
        padding: 0 16px;
    }

    .histoire-section {
        padding: 50px 16px 60px;
    }

    .team-photo-card.tall {
        width: 130px;
        height: 190px;
    }

    .team-photo-card.wide {
        width: 190px;
        height: 140px;
    }

    .team-photo-card.square {
        width: 155px;
        height: 155px;
    }
}

/* ================================================
    Page 404 
   ================================================ */

/* ── Layout ── */
.error-404-page {
    position: relative;
    min-height: 100vh;
    background-color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

/* ── Grille de fond ── */
.error-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(238, 116, 8, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238, 116, 8, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Lueur centrale orange diffuse */
.error-bg-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(238, 116, 8, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Container central ── */
.error-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    max-width: 560px;
}

/* ── 404 en fond ── */
.error-code-wrapper {
    position: relative;
    line-height: 1;
}

.error-code-bg {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(120px, 22vw, 200px);
    letter-spacing: -6px;
    user-select: none;
    animation: fadeInScale 0.8s ease forwards;
    /* Dégradé orange → orange foncé en remplissage */
    background: linear-gradient(160deg, #ff8c1a 0%, #ee7408 45%, #b85500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Halo orange derrière */
    filter: drop-shadow(0 0 40px rgba(238, 116, 8, 0.55)) drop-shadow(0 0 80px rgba(238, 116, 8, 0.25));
}

.error-code-line {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ee7408;
    animation: slideIn 0.6s 0.4s ease both;
}

/* ── Icône ── */
.error-icon {
    opacity: 0;
    animation: fadeUp 0.6s 0.3s ease forwards;
}

/* ── Textes ── */
.error-text-block {
    opacity: 0;
    animation: fadeUp 0.6s 0.5s ease forwards;
}

.error-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ee7408;
    margin-bottom: 10px;
}

.error-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.error-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #888888;
    line-height: 1.7;
}

/* ── Séparateur ── */
.error-separator {
    width: 48px;
    height: 2px;
    background: #ee7408;
    opacity: 0;
    animation: slideIn 0.5s 0.7s ease forwards;
}

/* ── Bouton principal ── */
.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #ee7408;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #ee7408;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    opacity: 0;
    animation: fadeUp 0.6s 0.8s ease forwards;
}

.error-btn:hover {
    background: transparent;
    color: #ee7408;
    transform: translateY(-2px);
}

.error-btn svg {
    transition: transform 0.25s ease;
}

.error-btn:hover svg {
    transform: translateX(4px);
}

/* ── Liens secondaires ── */
.error-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.5s 1s ease forwards;
}

.error-nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
}

.error-nav-links a:hover {
    color: #ee7408;
}

.error-nav-links .dot {
    color: #333;
    font-size: 16px;
}

/* ── Animations ── */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 48px;
    }
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .error-404-page {
        padding: 100px 20px 60px;
    }

    .error-nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}



/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: #FF5F00;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .main-header {
        height: 65px;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-btn {
        display: flex;
        order: 2;
        z-index: 2100;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: #1a1a1a;
        padding: 80px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        list-style: none;
    }

    /* Nav mobile : 1.1rem → 1.25rem */
    .nav-links li a {
        color: white;
        font-size: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
    }

    .nav-links li a:active,
    .nav-links li a:hover {
        color: #FF5F00;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding-bottom: 60px;
        display: flex;
        justify-content: center;
    }

    .hero-content {
        padding: 110px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .hero-top-bar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
    }

    /* Hero top bar mobile : 16px → 20px */
    .hero-top-bar span:not(.hero-dot) {
        font-size: 20px;
        letter-spacing: 0.1em;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
    }

    .hero-center-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Hero brand mobile : 50px → 65px */
    .hero-brand {
        font-size: 65px;
        letter-spacing: 2px;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    /* Hero slogan mobile : 16px → 20px */
    .hero-slogan {
        font-size: 20px;
        line-height: 1.4;
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 10px;
    }

    .btn-main {
        padding: 18px 32px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 16px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nos-metiers-section {
        padding: 60px 20px;
    }

    .metier-row,
    .metier-row.reverse {
        flex-direction: column-reverse;
        gap: 20px;
        margin-bottom: 60px;
    }

    .metier-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .metier-content {
        padding: 0;
        text-align: left;
    }

    /* metier-number mobile : 2.5rem → 3rem */
    .metier-number {
        font-size: 3rem;
        margin-bottom: -15px;
    }

    .access-container,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .stats-grid {
        gap: 20px;
    }

    /* stat-number mobile : 28px → 36px */
    .stat-number {
        font-size: 36px;
    }

    .stat-divider {
        height: 40px;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-divider {
        height: 40px;
    }
}