/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VARIABLES & RESET
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
    --orange: #fe5000;
    --orange-hover: #d64300;
    --text: #1C1916;
    --text-light: #666;
    --bg-white: #FFFFFF;
    --bg-soft: #F5F2EE;
    --bg-dark: #111111;
    --container-width: 1200px;
    --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition: all 0.4s var(--ease);
    --font-heading: 'avenir-next-world', 'Avenir Next', 'Avenir', 'Nunito Sans', sans-serif;
    --font-sans: 'avenir-next-world', 'Avenir Next', 'Avenir', 'Nunito Sans', sans-serif;
    /* Perfect blob shapes derived from brand identity */
    --blob-shape-1: 56% 44% 52% 48% / 58% 49% 51% 42%;
    --blob-shape-2: 45% 55% 47% 53% / 48% 55% 45% 52%;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS PREMIUM (Awwwards Style)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */


/* Image Reveal Mask */
.reveal-wrap {
    position: relative;
    overflow: hidden;
}

.reveal-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-soft);
    z-index: 10;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: right;
}

.bg-dark .reveal-wrap::after {
    background: var(--bg-dark);
}

.reveal-wrap.appear::after {
    transform: scaleX(0);
}

.reveal-wrap>* {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.1s 0.2s, transform 1.5s cubic-bezier(0.2, 0.9, 0.1, 1) 0.1s;
}

.reveal-wrap.appear>* {
    opacity: 1;
    transform: scale(1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.italic {
    font-style: italic;
}

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

.bg-soft {
    background-color: var(--bg-soft);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

.section-padding {
    padding: 80px 0;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION HEADER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-header {
    margin-bottom: 70px;
    max-width: 580px;
}

.section-header.white {
    color: white;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

.subtitle::before {
    content: '';
    width: 8px;
    height: 18px;
    flex-shrink: 0;
    order: -1;
    background-color: var(--orange);
    -webkit-mask: url('../images/picto.svg') no-repeat center / contain;
    mask: url('../images/picto.svg') no-repeat center / contain;
    margin-right: 4px;
}

.subtitle::after {
    display: none;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
}

.section-header.white p {
    color: rgba(255, 255, 255, 0.65);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER / NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
}

header.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding: 0 10%;
    /* Utilisation de clamp() plus bas pour un ajustement "pixel par pixel" fluide */
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    /* Diminue proportionnellement entre 1800px et 1024px */
    height: clamp(38px, 3.1vw, 52px);
    width: auto;
    display: block;
    /* Le logo PNG est orange sur fond transparent â€” visible sur photo foncÃ©e
       ET sur fond blanc une fois scrollÃ© */
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 0.85;
}

/* Nav links â€” blancs sur photo, foncÃ©s aprÃ¨s scroll */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: clamp(8px, 1.1vw, 20px); /* L'écart se réduit automatiquement dès 1800px */
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(10.5px, 0.77vw, 14px); /* Se réduit dynamiquement dès 1800px */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.08vw, 1.5px);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s;
    white-space: nowrap;
}

header.scrolled .desktop-nav a {
    color: var(--text);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--orange);
    transition: width 0.3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.nav-active {
    color: var(--orange) !important;
}

.desktop-nav a:hover::after,
.desktop-nav a.nav-active::after {
    width: 100%;
}

.nav-contact-link {
    color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 8px 22px !important;
    border-radius: 2px;
    transition: all 0.3s var(--ease) !important;
}

.nav-contact-link::after {
    display: none !important;
}

.nav-contact-link.nav-active {
    border-color: var(--orange) !important;
}

header.scrolled .nav-contact-link {
    color: var(--text) !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

header.scrolled .nav-contact-link.nav-active {
    color: var(--orange) !important;
    border-color: var(--orange) !important;
}

.desktop-nav a.nav-contact-link:hover {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 84, 13, 0.2);
}

/* Burger mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

header.scrolled .mobile-toggle span {
    background: var(--text);
}


/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   HERO
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    color: white;
    padding-top: 140px; /* Safe space to prevent overlap with fixed header on short screens */
}

/* Slideshow */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    transform: scale(1.04);
    animation: heroZoom 8s var(--ease) forwards;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.page-hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding-top: 110px; /* Prevent overlap with fixed header */
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8));
    z-index: 0;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 800px;
    margin-top: 0;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 16px 0 20px;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.5) 45%, rgba(10, 10, 10, 0) 100%);
}

/* overlay gÃ©rÃ© via ::before */

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 10% clamp(40px, 10vh, 140px);
    max-width: 1200px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 18px;
    flex-shrink: 0;
    background-color: var(--orange);
    -webkit-mask: url('../images/picto.svg') no-repeat center / contain;
    mask: url('../images/picto.svg') no-repeat center / contain;
    margin-right: 4px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 5.2rem);
    line-height: 1.02;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin-bottom: 56px;
    line-height: 1.7;
}

/* CTA */
.cta-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--orange);
    color: white;
    border: 1px solid var(--orange);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(234, 84, 13, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.btn-outline-dark:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: transparent;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-sm {
    padding: 12px 22px;
    font-size: 9px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 0.7s ease 1.4s forwards;
}

.dots-symbol {
    display: flex;
    flex-direction: column;
    gap: 7px;
    animation: float 2s ease-in-out infinite;
}

.dot {
    width: 14px;
    height: 14px;
    background: var(--orange);
}

.dot:first-child {
    border-radius: var(--blob-shape-1);
}

.dot:last-child {
    border-radius: var(--blob-shape-2);
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}


/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   BLOB â€” FORME ORGANIQUE DU LOGO
   La forme de base, dÃ©clinÃ©e en tailles et usages
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */

/* SÃ©parateur vertical (2 blobs empilÃ©s â€” comme sur la carte de visite) */
.blob-divider {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 22px;
}

.blob-divider--sm .blob-dot {
    width: 9px;
    height: 9px;
}

.blob-divider--orange .blob-dot {
    background: var(--orange);
}

.blob-divider--center {
    align-items: center;
    justify-content: center;
    margin: 48px auto;
}

.blob-dot {
    width: 12px;
    height: 12px;
    background: var(--text);
    flex-shrink: 0;
}

.blob-dot:first-child {
    border-radius: var(--blob-shape-1);
}

.blob-dot:last-child {
    border-radius: var(--blob-shape-2);
}

/* Modifier pour orientation horizontale */
.blob-divider--horizontal {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

/* Horizontal Twin Blobs (as requested) */
.blob-divider-horizontal {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.blob-divider-horizontal .blob-dot {
    width: 16px;
    height: 16px;
    background: var(--orange);
}

/* â”€â”€ Picto de marque â€” remplace les blobs ronds par le vrai SVG dans les sÃ©parateurs â”€â”€ */
.blob-divider>.blob-dot:first-child,
.blob-divider-horizontal>.blob-dot:first-child {
    border-radius: 0;
    animation: none;
    background-color: var(--orange);
    background-image: none;
    -webkit-mask: url('../images/picto.svg') no-repeat center / contain;
    mask: url('../images/picto.svg') no-repeat center / contain;
}

/* SÃ©parateurs de section â€” taille confortable */
.blob-divider>.blob-dot:first-child {
    width: 32px;
    height: 50px;
    transform: rotate(90deg);
}

/* SÃ©parateurs inline (showrooms) â€” plus compact */
.blob-divider-horizontal>.blob-dot:first-child {
    width: 21px;
    height: 33px;
    transform: rotate(90deg);
}

/* DeuxiÃ¨me dot masquÃ© â€” le SVG contient dÃ©jÃ  les deux blobs */
.blob-divider>.blob-dot:last-child,
.blob-divider-horizontal>.blob-dot:last-child {
    display: none;
}

/* Blobs dÃ©coratifs de fond â€” trÃ¨s grands, trÃ¨s discrets */
.deco-blob {
    position: absolute;
    border-radius: 62% 38% 70% 30% / 45% 55% 45% 55%;
    pointer-events: none;
    z-index: 0;
}

/* Hero â€” blob orange en haut Ã  droite, subtil */
.hero-blob {
    position: absolute;
    border-radius: 60% 40% 68% 32% / 50% 62% 38% 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-blob--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(234, 84, 13, 0.12);
    animation: blobDrift 10s ease-in-out infinite alternate;
}

.hero-blob--2 {
    width: 240px;
    height: 240px;
    bottom: 80px;
    right: 12%;
    background: rgba(234, 84, 13, 0.07);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    animation: blobDrift 14s ease-in-out infinite alternate-reverse;
}

@keyframes blobDrift {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(12px, 18px) rotate(6deg);
    }
}

/* Section rÃ©alisations â€” blob coin haut droit */
.deco-blob--dark-tr {
    display: none;
    width: 350px;
    height: 350px;
    top: -80px;
    right: -60px;
    background: rgba(234, 84, 13, 0.07);
}

/* Footer â€” blob coin bas gauche */
.deco-blob--footer {
    width: 300px;
    height: 300px;
    bottom: 60px;
    left: -80px;
    background: rgba(234, 84, 13, 0.05);
}


/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   PHRASE DE MARQUE
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.marque-phrase {
    padding: 90px 0;
    background: var(--bg-white);
    border-bottom: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.deco-blob--left {
    width: 380px;
    height: 380px;
    top: 50%;
    left: -140px;
    transform: translateY(-50%);
    background: rgba(234, 84, 13, 0.03);
}

.deco-blob--right {
    width: 260px;
    height: 260px;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    background: rgba(234, 84, 13, 0.04);
    border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
}

.marque-phrase .container {
    position: relative;
    z-index: 1;
}

.marque-phrase p {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
    text-align: center;
}

.marque-phrase em {
    font-style: italic;
    color: var(--orange);
}

.marque-phrase .blob-divider {
    align-items: center;
    margin-bottom: 12px;
}

.marque-phrase .blob-divider {
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.marque-phrase .blob-divider:last-child {
    margin-bottom: 0;
    margin-top: 28px;
}


/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   MARQUES â€” section + marquee
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.marques-section {
    padding: 70px 0 0;
    background: var(--bg-soft);
}

.marques-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 40px;
}

.marquee-band {

    background: var(--orange);
    /* Fond orange */
    padding: 35px 0;
    /* AugmentÃ© pour donner plus d'air */
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 100s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Les vraies images logo */
img.marquee-item {
    height: 42px;
    /* Logos plus visibles depuis que le padding transparent est trimmÃ© */
    width: auto;
    max-width: 160px;
    /* Limite les wordmarks trÃ¨s allongÃ©s (ex: kavehome) */
    min-width: 55px;
    /* Ã‰vite que les logos carrÃ©s/circulaires (Umbra, 24bottlesâ€¦) passent inaperÃ§us */
    filter: brightness(0) invert(1);
    /* Rend le logo noir complÃ¨tement blanc */
    opacity: 0.85;
    padding: 0 40px;
    object-fit: contain;
    box-sizing: content-box;
}

.marquee-sep {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 10px;
}

.marquee-sep .blob-dot:first-child {
    width: 8px;
    height: 18px;
    border-radius: 0;
    background: white;
    background-image: none;
    -webkit-mask: url('../images/picto.svg') no-repeat center / contain;
    mask: url('../images/picto.svg') no-repeat center / contain;
}

.marquee-sep .blob-dot:last-child {
    display: none;
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   SHOWROOMS
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.showrooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.showroom-card {
    background: white;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    overflow: hidden;
}

.showroom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.showroom-img {
    aspect-ratio: 4 / 3;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.showroom-card:hover .showroom-img {
    transform: scale(1.04);
}

.showroom-info {
    padding: 32px 36px 36px;
}

.showroom-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.showroom-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.showroom-info>p:not(.showroom-tag) {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 22px;
    line-height: 1.6;
}

.showroom-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-arrow {
    text-decoration: none;
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.link-arrow:hover {
    color: var(--orange);
}


/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   L'ESPRIT ARCHITRUC (About)
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.about-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   EMBLÃˆME DÃ‰CORATIF â€” DEUX RONDS DU "C" (VERTICAL)
   Filigrane en fond, Ã  utiliser ponctuellement
   pour rythmer les sections sans surcharger.

   USAGE :
   1) Dans UNE section (l'emblÃ¨me reste contenu) :
      <section style="position: relative; overflow: hidden;">
        <div class="deco-emblem deco-emblem--lg deco-emblem--br"></div>
        ...
      </section>

   2) Ã€ CHEVAL sur plusieurs sections (l'emblÃ¨me
      traverse les bordures comme un fond continu) :
      <div class="deco-track">
        <div class="deco-emblem ..." style="top: 200px; right: 60px;"></div>
        <section>...</section>
        <section>...</section>
      </div>
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */

/* Wrapper qui permet Ã  un emblÃ¨me de traverser plusieurs sections.
   L'emblÃ¨me passe par-dessus les fonds opaques des sections, mais
   l'opacitÃ© faible (~8 %) le maintient en filigrane dÃ©coratif. */
.deco-track {
    position: relative;
}

.deco-track>.deco-emblem {
    z-index: 2;
}

.deco-emblem {
    position: absolute;
    background-color: var(--orange);
    -webkit-mask: url('../images/picto-blob-pile.svg') no-repeat center / contain;
    mask: url('../images/picto-blob-pile.svg') no-repeat center / contain;
    -webkit-mask-mode: alpha;
    mask-mode: alpha;
    pointer-events: none;
    z-index: 0;
    opacity: 0.09;
}

/* Variante blanche (sur fond sombre / photo) */
.deco-emblem--light {
    background-color: white;
    opacity: 0.18;
}

/* Tailles â€” ratio 602Ã—1280 (~0.47) du picto fait-main */
.deco-emblem--xl {
    width: 280px;
    height: 595px;
}

.deco-emblem--lg {
    width: 200px;
    height: 425px;
}

.deco-emblem--md {
    width: 130px;
    height: 276px;
}

.deco-emblem--sm {
    width: 85px;
    height: 181px;
}

/* Positions stratÃ©giques â€” emblÃ¨mes ENTIÃˆREMENT dans la section, parfaitement verticaux */
.deco-emblem--tl {
    top: 40px;
    left: 40px;
}

.deco-emblem--tr {
    top: 40px;
    right: 40px;
}

.deco-emblem--bl {
    bottom: 40px;
    left: 40px;
}

.deco-emblem--br {
    bottom: 40px;
    right: 40px;
}

.deco-emblem--mid-r {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

.deco-emblem--mid-l {
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.deco-emblem--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   BLOBS DÃ‰CO â€” Page RÃ©alisations
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
/* 1er â€” gauche, haut de grille */
.deco-emblem--real-l1 {
    top: 15%;
    left: 40px;
}

/* 2e â€” droite, plus bas (~milieu de grille) */
.deco-emblem--real-r2 {
    top: 45%;
    right: 40px;
    transform: translateY(-50%);
}

/* 3e â€” gauche, encore plus bas (~bas de grille) */
.deco-emblem--real-l3 {
    top: 78%;
    left: 40px;
    transform: translateY(-50%);
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   STICKY SCROLL SHOWROOMS
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.sticky-showrooms-container {
    position: relative;
    padding: 0;
    margin: 100px 0;
    /* Increased margin for better respiration */
}

@media (min-width: 1024px) {
    .sticky-showrooms-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 0;
    }

    .sticky-visuals {
        flex: 1.2;
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: hidden;
        z-index: 2;
    }

    .sticky-visual-item {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.8s var(--ease), transform 1.2s var(--ease);
        transform: scale(1.05);
        pointer-events: none;
    }

    .sticky-visual-item .carousel,
    .sticky-visual-item .carousel-track,
    .sticky-visual-item .carousel-slide {
        height: 100%;
    }

    .sticky-visual-item.active {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .scrolling-details {
        flex: 1;
        position: relative;
        z-index: 1;
    }

    .showroom-detail-block {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 10% 0 15%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Mobile fallback */
@media (max-width: 1023px) {
    .sticky-visual-item:not(:first-child) {
        display: none;
    }

    .sticky-visual-item {
        position: relative;
        height: 50vh;
        opacity: 1 !important;
        transform: none !important;
    }

    .showroom-detail-block {
        padding: 60px 0;
    }
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 8%;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    max-width: 460px;
}

.split-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.split-image-container {
    flex: 1;
    position: relative;
    padding-top: 30px;
    padding-left: 30px;
}

.split-image-container .reveal-wrap {
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.split-image-container img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    display: block;
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   CAROUSEL MINI (Showrooms)
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s var(--ease);
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators .dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.carousel:hover .carousel-prev,
.carousel:hover .carousel-next {
    opacity: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--orange);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.split-image-container::before {
    /* Fond gris dÃ©calÃ© */
    content: '';
    position: absolute;
    top: 80px;
    bottom: -40px;
    left: 80px;
    right: -40px;
    background: rgba(234, 84, 13, 0.04);
    /* Orange transparent instead of pastel soft background */
    z-index: 1;
}

.split-image-container::after {
    /* Pattern points orange */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--orange) 2px, transparent 2.5px);
    background-size: 15px 15px;
    z-index: 3;
}

@media (max-width: 991px) {
    .split-layout {
        flex-direction: column;
        gap: 60px;
    }

    .split-content {
        max-width: 100%;
        text-align: center;
    }

    .split-image-container {
        margin-bottom: 40px;
    }

    .split-image-container::before {
        left: 40px;
        right: -20px;
        bottom: -20px;
        top: 40px;
    }
}


/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   RÃ‰ALISATIONS
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.project-item {
    position: relative;
    aspect-ratio: 4 / 5;
    height: auto;
    overflow: hidden;
    cursor: pointer;
}

.project-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
}

.project-item:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 32px 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    transform: translateY(12px);
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-cat {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.project-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.project-overlay p {
    font-size: 0.85rem;
    opacity: 0.7;
}

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


/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   FOOTER
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.footer {
    padding: 90px 0 0;
    background: var(--bg-white);
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 70px;
}

.footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 18px;
    display: block;
    /* Logo orange â€” visible sur fond blanc */
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.875rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.footer-social a {
    color: var(--text-light);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--orange);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-col em {
    font-size: 0.78rem;
    opacity: 0.7;
}

.footer-tag {
    color: var(--orange) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px !important;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-tel a {
    font-size: 1rem !important;
    font-weight: 700;
    color: var(--text) !important;
    margin-top: 6px;
    display: block;
}

.footer-tel a:hover {
    color: var(--orange) !important;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 12px;
    color: #aaa;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--orange);
}


/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   ANIMATIONS
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Project Details Grid (Responsive 2 cols) ── */
.project-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 10px 40px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    opacity: 0.9;
    font-size: clamp(9px, 1vw + 0.4rem, 16px); /* Taille parfaitement fluide selon les pixels de l'écran */
}
.project-details-grid span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.project-details-grid strong {
    color: var(--orange);
    font-weight: 700;
}
@media (max-width: 768px) {
    .project-details-grid {
        gap: 8px 15px;
    }
}

/* ── Plan 2D Split Layout (Archi Business) ── */
.plan-split-layout {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-split-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    background: #fff;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.plan-split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .plan-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Compare Slider (Plan ⇆ Rendu interactif) ── */
.compare-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/10;
    max-height: 70vh;
    margin: 40px auto 0;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    background: var(--bg-soft);
}

.compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.compare-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s linear;
    background: white;
}

.compare-overlay img {
    object-fit: contain;
    background: white;
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--orange);
    transform: translateX(-50%);
    pointer-events: none;
    transition: left 0.05s linear;
}

.compare-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    background: var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.compare-handle::after {
    content: '⇆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.compare-label {
    position: absolute;
    top: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: rgba(0, 0, 0, 0.55);
    padding: 8px 14px;
    border-radius: 2px;
    pointer-events: none;
    backdrop-filter: blur(8px);
}

.compare-label--left {
    left: 24px;
}

.compare-label--right {
    right: 24px;
}

.compare-hint {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════════════ 
   RESPONSIVE
══════════════════════════════════════════════════════════════════  */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 5%;
    }

    .hero-content {
        padding: 0 5% clamp(40px, 10vh, 100px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .showrooms-grid {
        gap: 20px;
    }

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

    .section-padding {
        padding: 60px 0;
    }

    /* Activer le menu burger dès la tablette (1024px) pour éviter les chevauchements */
    .desktop-nav {
        display: flex;
        position: fixed;
        inset: 0;
        background: #ffffff;
        z-index: 990;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .desktop-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .desktop-nav ul {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        padding: 0;
        list-style: none;
    }

    .desktop-nav a {
        color: var(--text) !important;
        font-size: 16px !important;
        font-weight: 400;
        letter-spacing: 3px;
    }

    .desktop-nav .nav-contact-link {
        border-color: var(--text) !important;
        padding: 10px 28px !important;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .mobile-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--text);
    }

    .mobile-toggle.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
        background: var(--text);
    }
}

/* â”€â”€ Mobile (â‰¤ 768px) â”€â”€ */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    /* Header */
    header {
        padding: 16px 0;
    }

    header.scrolled {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo-img {
        height: 48px;
    }

    /* Mobile Nav styles are now handled at 1024px */

    /* Sections */
    .section-padding {
        padding: 50px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero-content {
        padding: 60px 20px 100px; /* Reduced bottom padding */
        max-width: 100%;
        margin-top: 40px; /* Push down away from header logo */
    }
    
    .hero h1, .page-hero h1, .project-hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* Boutons hero â€” restent en ligne, compacts */
    .hero .cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }

    .btn {
        padding: 14px 24px;
        justify-content: center;
    }

    /* Scroll indicator â€” remonter lÃ©gÃ¨rement */
    .scroll-indicator {
        display: none !important;
    }

    /* Page hero (pages internes) */
    .page-hero {
        min-height: 50vh;
    }

    .page-hero .hero-content {
        padding: 80px 20px 40px;
        margin-top: 40px;
    }

    /* Marque phrase */
    .marque-phrase {
        padding: 50px 0;
    }

    .marque-phrase p {
        font-size: 1.2rem;
        text-align: center;
    }

    .blob-divider-horizontal .blob-dot {
        width: 12px;
        height: 12px;
    }

    .marquee-track {
        animation-duration: 50s; /* Faster scrolling on mobile */
    }

    /* Stats */
    .stats-section {
        padding: 50px 0;
    }

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

    /* Section header */
    .section-header {
        text-align: center;
    }

    .section-header.white {
        text-align: center;
    }

    /* Grilles projets */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .project-item {
        height: 200px;
    }

    .projects-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Showrooms cards (index) */
    .showrooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Sticky showrooms mobile â€” carousels pairÃ©s via JS */
    .sticky-showrooms-container {
        margin: 40px 0;
    }

    .mobile-showroom-pair {
        margin-bottom: 48px;
    }

    .mobile-showroom-pair .sticky-visual-item {
        position: relative !important;
        height: 65vw;
        opacity: 1 !important;
        transform: none !important;
        overflow: hidden;
    }

    .mobile-showroom-pair .carousel,
    .mobile-showroom-pair .carousel-track,
    .mobile-showroom-pair .carousel-slide {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .mobile-showroom-pair .showroom-detail-block {
        padding: 28px 20px 0;
    }

    /* About / Split */
    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .split-content {
        max-width: 100%;
        text-align: center;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Deco emblems â€” trop grands sur mobile */
    .deco-emblem {
        display: none;
    }
}

/* â”€â”€ Small mobile (â‰¤ 480px) â”€â”€ */
@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .marque-phrase p {
        font-size: 1.05rem;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .footer-grid {
        gap: 28px;
    }

    .btn {
        font-size: 10px;
        padding: 13px 20px;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOB ANIMATIONS â€” uniquement dans les heros
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Morphing organique pour les cercles CSS (scroll indicator) */
@keyframes blobMorph {
    0% {
        border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
        transform: scale(1) rotate(0deg);
    }

    33% {
        border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
        transform: scale(1.18) rotate(4deg);
    }

    66% {
        border-radius: 55% 45% 35% 65% / 40% 58% 42% 60%;
        transform: scale(0.88) rotate(-3deg);
    }

    100% {
        border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
        transform: scale(1) rotate(0deg);
    }
}

/* Pulse doux pour le picto SVG dans les heros */
@keyframes blobPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

/* Aucune animation en dehors des heros */
.blob-dot:first-child,
.blob-dot:last-child {
    animation: none;
}

/* Blob-dots dans les heros â€” pulse harmonisÃ© */
.hero .blob-divider>.blob-dot:first-child,
.page-hero .blob-divider>.blob-dot:first-child,
.project-hero .blob-divider>.blob-dot:first-child {
    animation: blobPulse 3s ease-in-out infinite;
}

/* Scroll indicator â€” morphing organique (cercles CSS) */
.dots-symbol .dot:first-child {
    animation: blobMorph 3.5s ease-in-out infinite;
}

.dots-symbol .dot:last-child {
    animation: blobMorph 3.5s ease-in-out infinite reverse;
    animation-delay: 0.6s;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGE LOADER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    transition: opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-blobs {
    display: flex;
    gap: 12px;
    align-items: center;
}

.loader-blob {
    width: 24px;
    height: 24px;
    background: var(--orange);
    animation: loaderBlobAnim 1.1s ease-in-out infinite alternate;
}

.loader-blob:last-child {
    animation-direction: alternate-reverse;
    animation-delay: 0.18s;
}

@keyframes loaderBlobAnim {
    0% {
        transform: scale(0.7);
        border-radius: var(--blob-shape-1);
        opacity: 0.65;
    }

    100% {
        transform: scale(1.2);
        border-radius: var(--blob-shape-2);
        opacity: 1;
    }
}

.loader-brand {
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #c8c8c8;
    animation: loaderTextPulse 1.8s ease-in-out infinite;
}

@keyframes loaderTextPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS / CHIFFRES CLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-section {
    padding: 56px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 20px 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.stat-blobs {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 14px;
}

.stat-blobs .blob-dot:first-child {
    width: 10px;
    height: 16px;
    transform: rotate(90deg);
    border-radius: 0;
    animation: none;
    opacity: 1;
    background-color: var(--orange);
    background-image: none;
    -webkit-mask: url('../images/picto.svg') no-repeat center / contain;
    mask: url('../images/picto.svg') no-repeat center / contain;
}

.stat-blobs .blob-dot:last-child {
    display: none;
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    color: var(--orange);
    font-weight: 700;
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* Fix mobile responsive for stats-grid */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 10px;
    }

    .stat-item {
        padding: 10px;
    }

    /* Hide the right border on the 2nd item (last in the row) */
    .stat-item:nth-child(2)::after {
        display: none;
    }
}

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

    .stat-item::after {
        display: none !important;
    }

    .stat-item {
        padding: 10px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NOS RÃ‰ALISATIONS - PAGE STYLES
   Filterable Grid, Project Cards
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.realisations-filter {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s var(--ease);
}

.filter-btn.active {
    color: var(--text);
}

.filter-btn.active::after {
    width: 100%;
}

.filter-btn:hover {
    color: var(--orange);
}

/* Projects Grid */
.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .projects-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.project-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    transition: var(--transition);
}

.project-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.project-card:hover .project-card-img img {
    transform: scale(1.08);
}

.project-card-info {
    padding: 10px 0;
}

.project-card-info h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.project-card-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Category Label Overlay */
.project-type-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    z-index: 2;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.project-card:hover .project-type-tag {
    background: var(--orange);
    color: white;
}

/* Filter Animation */
.project-card {
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.project-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    display: none;
}

/* =========================================
   LOCATION APPART 101
========================================= */


.location-hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.location-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease) forwards;
}

.location-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8));
    z-index: 1;
}

.location-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.location-logo {
    max-width: 220px;
    margin-bottom: 40px;
    animation: fadeUp 1s var(--ease) 0.2s backwards;
}

.location-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 24px;
}

.location-hero .hero-sub {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .location-logo {
        max-width: 160px;
        margin-bottom: 30px;
    }
}

/* =========================================
   LOCATION DETAILS & PRICING
========================================= */

.location-usages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.usages-text h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.usages-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.usages-list li {
    font-size: 1.15rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.usages-list li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.usages-list .chk {
    color: var(--orange);
    font-weight: bold;
}

/* Inclusions */
.location-inclusions {
    background-color: var(--bg-soft);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 120px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.inc-header {
    flex: 0 0 35%;
}

.inc-header h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.inc-header p {
    color: var(--text-muted);
}

.inclusions-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inc-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-align: center;
}

/* Pricing */
.location-pricing-section {
    padding: 40px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.price-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.price-card.highlight {
    background: var(--bg-dark);
    color: white;
    border: none;
    padding: 50px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
}

.price-card.highlight:hover {
    transform: scale(1.03) translateY(-5px);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
}

.price-card h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.price-card .duration {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 30px;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-title);
    margin-bottom: 24px;
    line-height: 1;
}

.price-card .price .tax {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.6;
    font-family: var(--font-body);
}

.price-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    min-height: 45px;
}

.price-card.highlight .price-desc {
    color: rgba(255, 255, 255, 0.7);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.pricing-addon {
    background: var(--bg-soft);
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.addon-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--orange);
}

.addon-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 30px;
}

@media (max-width: 992px) {

    .location-usages-grid,
    .location-inclusions {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .price-card.highlight {
        transform: none;
    }

    .pricing-addon {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .addon-price {
        margin-left: 0;
    }
}


@media (max-width: 768px) {
    .location-gallery {
        grid-template-columns: 1fr !important;
    }

    .location-gallery .gallery-large {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ULTRA PREMIUM LOCATION DESIGN
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ULTRA PREMIUM LOCATION DESIGN
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.loc-hero-v2 {
    min-height: 100vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 80px;
}

.loc-hero-v2-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.loc-hero-v2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: saturate(0);
}

.loc-hero-v2-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.loc-hero-v2-title {
    font-size: clamp(3.5rem, 10vw, 8.5rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 30px;
    mix-blend-mode: overlay;
    color: rgba(255, 255, 255, 0.9);
}

.loc-hero-v2-desc {
    font-size: 1.4rem;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    font-weight: 300;
    border-left: 2px solid var(--orange);
    padding-left: 30px;
}

.loc-scroller {
    padding: 120px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.loc-marquee {
    display: flex;
    width: fit-content;
    white-space: nowrap;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--orange);
    animation: marquee 30s linear infinite;
    will-change: transform;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .loc-cards-grid {
        grid-template-columns: 1fr;
    }

    .loc-hero-v2-desc {
        margin-left: 0;
        margin-top: 40px;
    }

    .loc-pricing-grid {
        grid-template-columns: 1fr;
    }

    .loc-pricing-cell:nth-child(even) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

    .loc-pricing-cell {
        border-right: none !important;
    }

    .loc-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        justify-content: center;
    }

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


/* Bento Gallery (Location) */
.loc-gallery {
    width: 100%;
    overflow: hidden;
}

.loc-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.loc-bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
}

.loc-bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.loc-bento-item:hover img {
    transform: scale(1.05);
}



/* Features Editorial List */
.loc-editorial-features {
    padding: 150px 0;
    background: var(--bg-white);
}

.loc-editorial-features h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.loc-feature-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.4s ease, padding-left 0.4s ease;
}

.loc-feature-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.loc-feature-row:hover {
    background-color: var(--bg-soft);
    padding-left: 20px;
}

.loc-feature-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange);
}

.loc-feature-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.loc-feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
}

/* Pricing Minimalist */
.loc-pricing-minimal {
    padding: 100px 0 150px;
    background: var(--bg-dark);
    color: white;
}

.loc-pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.loc-pricing-header h2 {
    font-size: clamp(2.2rem, 10vw, 5rem);
    /* Plus petit sur mobile pour que "INVESTISSEMENT" tienne */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    word-wrap: break-word;
    max-width: 100%;
}

.loc-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.loc-price-line:hover .loc-price-title {
    color: var(--orange);
    padding-left: 15px;
}

.loc-price-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loc-price-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.loc-price-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
}

.loc-price-amount {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: white;
}

.loc-price-amount span {
    font-size: 1.2rem;
    color: var(--orange);
    font-weight: 700;
}

.loc-cta-banner {
    margin-top: 100px;
    padding: 40px 60px;
    background: var(--orange);
    border-radius: 4px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.loc-cta-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    gap: 30px;
}

.loc-cta-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.loc-cta-text p {
    font-size: 1rem;
    margin-top: 4px;
    opacity: 0.9;
    font-weight: 400;
}

.loc-cta-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: white;
    color: var(--orange);
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.link-subtle-white {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.link-subtle-white:hover {
    opacity: 1;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .loc-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .loc-bento-item {
        height: auto !important;
    }

    .loc-feature-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .loc-pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .loc-price-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .loc-cta-banner {
        padding: 40px 20px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .loc-cta-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 25px;
    }

    .loc-cta-text h3 {
        font-size: 1.4rem;
    }

    .loc-cta-actions {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }
}

/* Fix for anchor link scrolling behind sticky header */
#contact-form {
    scroll-margin-top: 150px;
}

#contact-section {
    scroll-margin-top: 150px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO LOCATION SPLIT (V3)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.loc-hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-white);
    padding-top: 100px;
    /* offset header */
}

.loc-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10%;
}

.loc-hero-logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 50px;
}

.loc-hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 40px;
}

.loc-hero-right {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    margin: 40px 40px 40px 0;
    border-radius: var(--blob-shape-2);
}

.loc-placeholder-img {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.2);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loc-placeholder-img svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.loc-actual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    /* Hide until user puts a real image */
}

@media (max-width: 1024px) {
    .loc-hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto 50vh;
    }

    .loc-hero-left {
        padding: 60px 5%;
        align-items: center;
        text-align: center;
    }

    .loc-hero-right {
        margin: 0 20px 40px 20px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CORRECTIFS MOBILE SUITE AUX RETOURS UTILISATEUR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {

    /* 1. RÃ©duire la taille des Ã©normes blobs de fond orange clairs (ex: Nos RÃ©trospectives) */
    .deco-blob--left,
    .deco-blob--right {
        width: 120px !important;
        height: 120px !important;
        opacity: 0.03 !important;
        /* TrÃ¨s discret */
    }

    .deco-blob--left {
        left: -30px !important;
    }

    .deco-blob--right {
        right: -30px !important;
    }


    /* 2. Éviter l'empilement vertical des 3 réalisations -> Scroll horizontal fluide */
    #featured-projects-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        gap: 16px;
        padding-bottom: 24px;
        margin-right: -15px;
        /* Permet au scroll d'aller jusqu'au bord de l'écran */
        padding-right: 15px;
    }

    #featured-projects-grid::-webkit-scrollbar {
        display: none;
    }

    #featured-projects-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    #featured-projects-grid .project-item {
        flex: 0 0 82% !important;
        /* L'image prend 82% de l'écran, on voit l'amorce de la suivante */
        scroll-snap-align: center;
        height: 380px !important;
        /* Hauteur généreuse */
    }

    /* 3. Conserver le concept horizontal pour Marques B2B mais en swipe natif sur mobile */
    #partenaires-mobilier {
        height: auto !important;
        padding: 40px 0 60px 0 !important;
    }

    #partenaires-mobilier .sticky-wrapper {
        position: relative !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
    }

    /* Transformer la ligne en carrousel natif */
    #partenaires-mobilier .horizontal-scroll-track {
        display: flex !important;
        flex-direction: row !important;
        /* Revenir en ligne */
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        gap: 20px !important;
        width: auto !important;
        padding: 0 20px !important;
        transform: none !important;
        /* Force override du JS */
    }

    #partenaires-mobilier .horizontal-scroll-track::-webkit-scrollbar {
        display: none;
    }

    #partenaires-mobilier .horizontal-intro {
        flex: 0 0 85% !important;
        /* L'intro prend un Ã©cran */
        scroll-snap-align: center;
        padding-right: 0 !important;
        text-align: left !important;
    }

    /* Redimensionner les logos et photos pour le carrousel */
    .sc-logo {
        flex: 0 0 180px !important;
        /* Un peu moins large pour laisser respirer */
        width: 180px !important;
        height: 120px !important;
        padding: 10px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: transparent !important;
        /* Supprimer le fond gris */
        border-radius: 0 !important;
        scroll-snap-align: center;
        margin-right: 15px !important;
        /* Espacement forcÃ© pour Ã©viter qu'ils se touchent */
    }

    /* On rÃ©affiche les photos mais adaptÃ©es au swipe */
    .sc-photo {
        display: block !important;
        flex: 0 0 280px !important;
        height: 380px !important;
        scroll-snap-align: center;
    }

    .sc-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

    /* Annuler les superpositions (-50px) qui font dÃ©border les images sur les logos sur mobile */
    .pull-l {
        margin-left: 0 !important;
    }

    .pull-r {
        margin-right: 0 !important;
    }

    /* Cacher la barre de progression desktop (elle est liÃ©e au scroll vertical, inutile en swipe natif) */
    .scroll-indicator-wrap {
        display: none !important;
    }

    /* 4. Corriger l'effet "trop zoomÃ©" des images Hero sur mobile */
    /* Les Ã©crans de tÃ©lÃ©phone sont verticaux (9:16) et les photos horizontales (16:9). 
       Un height: 100vh coupe massivement les bords de l'image. On le rÃ©duit donc Ã  65vh. */
    .hero,
    .page-hero,
    .project-hero,
    .location-hero,
    .loc-hero-v2,
    .business-hero {
        height: auto !important;
        min-height: 85svh !important;
    }

    /* On dÃ©sactive le lÃ©ger zoom CSS (qui agrave le problÃ¨me sur les petits Ã©crans) */
    .hero-slide,
    .location-hero-bg,
    .loc-hero-v2-bg,
    .business-hero-slider-wrap {
        animation: none !important;
        transform: none !important;
    }

    /* 5. Garder les deux points (picto) collÃ©s au surtitre orange sur mobile */
    .hero-eyebrow {
        display: inline !important;
        /* Le texte et le picto restent solidaires mÃªme s'il y a un retour Ã  la ligne */
        line-height: 1.6;
    }

    .hero-eyebrow::before {
        display: inline-block !important;
        vertical-align: middle !important;
        margin-right: 8px !important;
        margin-bottom: 4px !important;
        /* Alignement vertical fin */
    }
}

/* Lightbox Global */
.lightbox { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.95); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; transform: scale(0.95); transition: transform 0.4s var(--ease); }
.lightbox.active img { transform: scale(1); }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: white; font-size: 50px; line-height: 1; cursor: pointer; z-index: 10000; transition: color 0.3s var(--ease); }
.lightbox-close:hover { color: var(--orange); }
.loc-bento-item { cursor: pointer; }


/* --- OPTIMISATIONS PERFORMANCES MOBILE --- */
@media (max-width: 768px) {
    /* Désactiver les animations de border-radius (coûteuses en calcul) sur mobile */
    .loader-blob,
    .dot {
        animation: none !important;
        /* border-radius: 50% !important; supprimé pour garder la forme de blob */ 
        transform: scale(1) !important;
        opacity: 1 !important;
    }
}
