/* ===========================
   SCROLL REVEAL GLOBAL
=========================== */

.reveal,
.reveal-btn,
[data-counter] {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-btn.is-visible,
[data-counter].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-btn {
    display: inline-block;
}

.site-footer.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.site-footer.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer children staggered reveal */
.site-footer .footer-col,
.site-footer .footer-title,
.site-footer .footer-desc,
.site-footer .footer-links li,
.site-footer .footer-quote,
.site-footer .footer-quote-author,
.site-footer .footer-image-wrapper,
.site-footer .footer-socials,
.site-footer .footer-links a,
.site-footer .footer-keywords {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-footer .footer-col.is-visible,
.site-footer .footer-title.is-visible,
.site-footer .footer-desc.is-visible,
.site-footer .footer-links li.is-visible,
.site-footer .footer-quote.is-visible,
.site-footer .footer-quote-author.is-visible,
.site-footer .footer-image-wrapper.is-visible,
.site-footer .footer-socials.is-visible,
.site-footer .footer-links a.is-visible,
.site-footer .footer-keywords.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   SECTION
=========================== */

.stats-section {
    /* La largeur/le centrage viennent de la classe Bootstrap "container"
       (alignée sur le logo et le bouton "Demander un devis" de la navbar). */
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff;
    color: #111;
}

/* ===========================
   CHIFFRES
=========================== */

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #C8102E;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.stat-item {
    padding: 60px 40px;
    text-align: center;
    border-right: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:last-child {
    border-right: none;
}

.number {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2.75rem, 5.1vw, 4.5rem);
    font-weight: 300;
    line-height: 1;
    color: #111;
}

.number .number-suffix {
    color: #C8102E;
}

.label {
    margin-top: 18px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #555;
}

/* ===========================
   TITRE
=========================== */

.displays {
    /* Déjà dans le container Bootstrap hérité de .stats-section :
       pas de largeur/marge horizontale propre, pour rester aligné
       avec le logo et le bouton "Demander un devis". */
    margin-top: 120px;
    text-align: left;
}

.section-subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 25px;
}



.section-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2.625rem, 4.9vw, 4.25rem);
    font-weight: 700;
    line-height: 1.05;
    max-width: 900px;
    margin: 0 0 50px;
    white-space: nowrap;
}

.section-title .highlight {
    color: #C8102E;
    font-weight: 700;
}

/* ===========================
   CARTES
=========================== */

.cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px; /* espace entre les cartes */
}

.card {
    background: #fff;
    padding: 32px 30px 30px;
    border: 1px solid #ececec; /* ligne fine pour délimiter */
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer; /* indique que c'est interactif */
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.card-number {
    display: inline-block;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 18px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.08);
    color: #C8102E;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card h3 {
    margin: 0 0 16px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
}

.card p {
    margin: 0 0 28px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.card .explore-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.card .explore-link:hover {
    color: #C8102E; /* couleur au survol */
    transform: translateX(6px); /* déplacement léger */
}

/* Effet au survol de la carte
.card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.688);
    transform: translateY(-6px);
    border-color: #ddd;
}
*/
/* Responsiveness */
@media(max-width: 992px) {
    .cards {
        grid-template-columns: 1fr 1fr; /* deux colonnes sur tablette */
        gap: 20px;
    }
}

@media(max-width: 768px) {
    .cards {
        grid-template-columns: 1fr; /* une colonne sur mobile */
        padding: 20px;
    }
}


/* Style général pour la section "Prêt à collaborer ?" */
.collaboration-section {
  text-align: center;
  padding: 80px 20px;
  font-family: "Montserrat", Arial, sans-serif;
  background-color: #fafafa;
}

/* Titre "Prêt à collaborer ?" */
.collaboration-section .section-subtitle {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C8102E;
  margin-bottom: 25px;
}

/* Titre principal "Donnons vie à votre prochain événement." */
.collaboration-section .section-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 auto 20px;
  max-width: 800px;
  color: #111;
  white-space: normal;
}

.collaboration-section .section-title .highlight {
  color: #C8102E;
  font-weight: 700;
}

/* Paragraphe */
.collaboration-section p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Boutons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  min-width: 180px;
  min-height: 52px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

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

.btn:focus-visible {
  outline: 2px solid #ff002b;
  outline-offset: 3px;
}

/* Bouton noir */
.btn-outline-noir {
  background-color: #000000;
  border: 2px solid #fbfbfb;
  color: #f6f4f4;
}

.btn-outline-noir:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ff0000;

}

/* Bouton contour */
.btn-outline {
  background-color: #ff0101;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color:transparent;
  color: #f60000;
}

@media (max-width: 480px) {
  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }
}


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width: 992px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .card {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

    .section-title {
        white-space: normal;
    }
}

@media(max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

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

    .section-header {
        margin: 80px auto 60px;
    }

    .card-title {
        font-size: 34px;
    }
}




/*section valeurs*/

/*==========================
        VALEURS
==========================*/

.values-section{
    padding:120px 0;
    background:#fff;
}

.values-label{
    display:block;
    color:#c51230;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:18px;
}

.values-title{
    font-size: clamp(2.625rem, 4.4vw, 3.875rem);
    font-weight:300;
    line-height:1.15;
    color:#111;
    margin-bottom:90px;
    font-family: "Montserrat", Arial, sans-serif;
}

/*==========================
        GRID
==========================*/

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

.value-card{
    padding:0 26px;
    min-height:180px;
    border-right:1px solid #e5e5e5;
}

.value-card:last-child{
    border-right:none;
}

/*==========================
        TEXTES
==========================*/

.value-number{
    display:block;
    color:#c51230;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:18px;
}

.value-card h3{
    font-size:34px;
    font-weight:300;
    color:#111;
    margin-bottom:22px;
    font-family: "Montserrat", Arial, sans-serif;
}

.value-card p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    max-width:240px;
}

/*==========================
      HOVER PREMIUM
==========================*/

.value-card{
    transition:.35s ease;
}

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

.value-card:hover .value-number{
    color:#e0002b;
}

.value-card:hover h3{
    color:#c51230;
}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

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

    .value-card{
        border:none;
        border-left:2px solid #ececec;
        padding-left:25px;
    }

}

@media(max-width:768px){

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

}

/* ===========================
   RÉALISATIONS PHARES
=========================== */

.featured-realisations-section {
    /* Largeur/centrage hérités de la classe Bootstrap "container", pour
       rester aligné avec le logo et le bouton "Demander un devis". */
    margin-top: 140px;
}

.featured-realisations-section .section-subtitle,
.featured-realisations-section .section-title {
    text-align: left;
}

.featured-realisations-section .section-title {
    white-space: normal;
}

.featured-realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
    gap: 28px;
    margin-top: 20px;
}

.featured-realisation-card {
    position: relative;
    display: block;
    min-width: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 460px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    background: #111;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.featured-realisation-card:hover {
    transform: translateY(-6px);
}

.featured-realisation-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-realisation-card:hover .featured-realisation-img {
    transform: scale(1.06);
}

.featured-realisation-img--placeholder {
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
}

.featured-realisation-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.78) 100%);
}

.featured-realisation-category {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff5566;
    margin-bottom: 12px;
}

.featured-realisation-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.625rem, 2.7vw, 2.375rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    max-width: 700px;
}

@media(max-width: 768px) {
    .featured-realisation-card {
        min-height: 320px;
    }

    .featured-realisation-overlay {
        padding: 26px;
    }
}

/* ===========================
   TROPHÉES & PRIX
=========================== */

.trophies-section {
    /* Largeur/centrage hérités de la classe Bootstrap "container", pour
       rester aligné avec le logo et le bouton "Demander un devis". */
    margin-top: 100px;
    text-align: left;
}

.trophies-section .section-subtitle {
    text-align: left;
}

.trophies-section .section-title {
    white-space: normal;
    margin-left: 0;
    margin-right: 0;
}

.trophies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
    text-align: center;
}

.trophy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trophy-image {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 18px;
}

.trophy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.08);
    color: #C8102E;
}

@media(max-width: 992px) {
    .trophies-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 576px) {
    .trophies-grid {
        grid-template-columns: 1fr;
    }
}

.trophy-card {
    cursor: pointer;
}

.trophy-hint {
    display: inline-block;
    margin-top: 14px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #C8102E;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Ordinateur : le message apparaît au survol de la carte. */
@media (hover: hover) and (pointer: fine) {
    .trophy-card:hover .trophy-hint {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile / tactile (pas de survol) : le message apparaît automatiquement
   dès que la carte arrive à l'écran, via la classe .is-visible déjà posée
   par le système de scroll-reveal (voir public/js/scroll-reveal.js). */
@media (hover: none) {
    .trophy-card.is-visible .trophy-hint {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   MODAL DÉTAIL TROPHÉE
=========================== */

.trophy-modal .modal-content {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
}

.trophy-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    opacity: 1;
}

.trophy-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 0;
}

.trophy-modal-image-wrap {
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    min-height: 340px;
}

.trophy-modal-image {
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.trophy-modal-details {
    padding: 48px 44px;
}

.trophy-modal-label {
    display: inline-block;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8102E;
    margin-bottom: 14px;
}

.trophy-modal-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: #111;
    margin: 0 0 24px;
}

.trophy-modal-meta {
    margin: 0 0 20px;
}

.trophy-modal-meta-row {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
}

.trophy-modal-meta-row dt {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    min-width: 170px;
    margin: 0;
    font-weight: 600;
}

.trophy-modal-meta-row dd {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    color: #111;
    margin: 0;
}

.trophy-modal-desc {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 20px 0 0;
}

@media(max-width: 768px) {
    /* Garde l'image et le texte côte à côte (horizontal) même en mobile,
       mais en version compacte, plutôt que de les empiler en colonne
       (empiler forçait à scroller beaucoup pour tout voir). */
    .trophy-modal-body {
        grid-template-columns: 110px 1fr;
        align-items: stretch;
    }

    .trophy-modal-image-wrap {
        padding: 10px;
        min-height: 0;
    }

    .trophy-modal-details {
        padding: 16px 14px 18px;
    }

    .trophy-modal-label {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .trophy-modal-title {
        font-size: 16px;
        line-height: 1.25;
        margin: 0 0 10px;
    }

    .trophy-modal-meta {
        margin: 0 0 10px;
    }

    .trophy-modal-meta-row {
        flex-direction: column;
        gap: 1px;
        padding: 6px 0;
    }

    .trophy-modal-meta-row dt {
        min-width: 0;
        font-size: 10px;
    }

    .trophy-modal-meta-row dd {
        font-size: 12px;
    }

    .trophy-modal-desc {
        font-size: 12px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .trophy-modal-close {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
    }
}

@media(max-width: 480px) {
    .trophy-modal-body {
        grid-template-columns: 90px 1fr;
    }

    .trophy-modal-image-wrap {
        padding: 8px;
    }

    .trophy-modal-details {
        padding: 12px 10px 14px;
    }

    .trophy-modal-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .trophy-modal-desc {
        font-size: 11px;
    }
}

/* ===========================
   HERO SCINDÉ RÉUTILISABLE (image à gauche / contenu à droite)
   Même disposition que la page "Nos clients", pour les pages qui
   n'ont pas leur propre grande image de premier plan.
=========================== */

.split-hero {
    width: 100%;
    height: 560px;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 58% 42%;
    background: #080808;
    overflow: hidden;
}

.split-hero-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.split-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.split-hero-image:hover img {
    transform: scale(1.03);
}

.split-hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 85%, rgba(8, 8, 8, 0.92) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.65) 100%);
}

.split-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 65px;
    background: #080808;
    color: white;
}

.split-hero-label {
    display: block;
    color: #e30613;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.split-hero-title {
    margin: 0 0 20px;
    color: white;
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 900;
    max-width: 600px;
}

.split-hero-title .highlight-red {
    color: #e30613;
}

.split-hero-title-nowrap {
    white-space: nowrap;
}


/* Icône décorative en filigrane, dans le bloc noir (toutes pages split-hero) */
.split-hero-content--has-icon {
    position: relative;
    overflow: hidden;
}

.split-hero-content--has-icon > *:not(.split-hero-icon-decor) {
    position: relative;
    z-index: 1;
}

.split-hero-icon-decor {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 30px;
    box-sizing: border-box;
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

@media (max-width: 1000px) {
    .split-hero-icon-decor {
        padding: 18px;
        opacity: 0.32;
    }
}

.split-hero-paragraph {
    max-width: 560px;
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.2;
}

.split-hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.split-hero-stat-card {
    min-height: 120px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.split-hero-stat-card:hover {
    transform: translateY(-5px);
    background: #1c1c1c;
}

.split-hero-stat-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    display: grid;
    place-items: center;
    color: #e30613;
    font-size: 0.9rem;
}

.split-hero-stat-card strong {
    display: block;
    color: white;
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 7px;
}

.split-hero-stat-card span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem;
}

@media (max-width: 1000px) {
    .split-hero {
        /* minmax(0, 1fr) et non 1fr seul : une image avec une grande largeur
           intrinsèque peut forcer la piste de grille à dépasser l'écran
           (comportement par défaut de CSS Grid), minmax(0, ...) l'en empêche. */
        grid-template-columns: minmax(0, 1fr);
        height: auto;
    }

    .split-hero-image {
        height: 480px;
        min-width: 0;
    }

    .split-hero-content {
        padding: 60px 40px;
    }
}

@media (max-width: 700px) {
    .split-hero-image {
        height: 380px;
    }

    .split-hero-content {
        padding: 45px 25px;
    }

    /* Le "garder ensemble" (dernier mot + mot surligné) déborde de l'écran
       en dessous d'une certaine largeur : on laisse revenir à la ligne. */
    .split-hero-title-nowrap {
        white-space: normal;
    }

    .split-hero-stats-row {
        grid-template-columns: 1fr;
    }

    .split-hero-stat-card {
        min-height: 95px;
    }
}

/* ===========================
   MOT DE LA DIRECTION (composant partagé, toutes les pages)
=========================== */

.direction-section {
    padding: 20px 0;
    border-top: 1px solid #ECECEC;
    margin-top: 2px;
}

.direction-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

.direction-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.direction-label {
    display: block;
    margin: 0 auto 20px;
    color: #d11d2f;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.direction-quote {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(0.9375rem, 2vw, 1.75rem);
    font-weight: 300;
    line-height: 1.4;
    color: #111;
    margin: 0 auto 40px;
    max-width: 980px;
}

.direction-author {
    color: #777;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
}

@media(max-width: 768px) {
    .direction-section {
        padding: 100px 0;
    }
}

/* ===========================
   PAGE CONTACT
=========================== */

.contact-page {
    padding: 60px 0;
}

/* ===========================
   HERO VIDÉO (page d'accueil)
=========================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* boutons en bas */
}

/* Video en plein écran, légèrement surdimensionnée pour laisser de la
   marge au parallaxe (elle se déplace un peu plus lentement que le
   scroll, sans jamais laisser apparaître de bord vide). */
.hero video {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 1;
    will-change: transform;
}

/* Overlay noir (optionnel) */
/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
} */

/* Contenu en bas */
.hero-content {
    position: relative;
    z-index: 3;
    /* au-dessus de la vidéo */
    width: 100%;
    display: flex;
    justify-content: center;
    /* centrer horizontalement */
    margin-bottom: 20px;
    /* espace en bas */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Styles des boutons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: #ff0000;
    color: white;
}

.btn-primary:hover {
    background: white;
    color: #ff0000;
    transform: translateY(-4px);
}

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

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.btn-secondary {
    background: white;
    color: #111;
}

.btn-secondary:hover {
    background: white;
    color: #111;
    transform: translateY(-4px);
}

/* Responsive */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .hero-content {
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ===========================
   CONTACT - ICÔNES CLIQUABLES
=========================== */

.contact-icons-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-icon-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-icon-btn:hover {
    background: #f7f7f7;
    transform: translateX(3px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.1);
    color: #C8102E;
}

.contact-icon svg {
    width: 19px;
    height: 19px;
}

.contact-icon-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-icon-text strong {
    font-size: 13px;
    color: #111;
    font-weight: 700;
}

.contact-icon-text span {
    font-size: 13px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


