/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .55s var(--ease), visibility .55s var(--ease);
}

#loader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(187, 123, 57, .14), transparent 70%),
        linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 45%, var(--primary-glow) 100%);
}

.loader-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(140, 87, 36, .04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .6;
}

.loader-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    padding: 2rem;
    animation: loaderFadeIn .5s var(--ease) both;
}

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

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loader-logo-ring {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow:
        0 0 0 1px rgba(140, 87, 36, .08),
        0 16px 48px rgba(140, 87, 36, .12);
    animation: loaderFloat 2.4s ease-in-out infinite;
    margin-bottom: 1.25rem;
}

.loader-logo-ring::before {
    content: '';
    position: absolute;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-right-color: rgba(140, 87, 36, .25);
    animation: loaderSpin 1.1s linear infinite;
}

.loader-logo-img {
    width: 56px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

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

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

.loader-title {
    font-family: var(--font-h);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.02em;
}

.loader-tagline {
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: .35rem;
}

.loader-dots {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.loader-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    animation: loaderDot 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) { animation-delay: .15s; opacity: .7; }
.loader-dots span:nth-child(3) { animation-delay: .3s; opacity: .45; }

@keyframes loaderDot {
    0%, 80%, 100% { transform: scale(.75); opacity: .35; }
    40%           { transform: scale(1.15); opacity: 1; }
}

/* ── HEADER ── */
#site-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

#site-closure-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #7a4d22 0%, #8C5724 42%, #BB7B39 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-closure-banner-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    text-align: center;
}

.site-closure-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
    color: #fff;
}

.site-closure-banner-icon svg {
    display: block;
    opacity: .96;
}

.site-closure-banner-text {
    margin: 0;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .015em;
    color: rgba(255, 255, 255, .96);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .site-closure-banner-inner {
        padding: 0 1rem;
        height: 32px;
        gap: .5rem;
    }

    .site-closure-banner-text {
        font-size: .74rem;
    }

    .site-closure-banner-icon {
        width: 20px;
        height: 20px;
    }

    .site-closure-banner-icon svg {
        width: 13px;
        height: 13px;
    }
}

body.has-site-top {
    --site-top-height: 72px;
}

#header {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    z-index: 1;
    padding: 1rem 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    transition: all .4s var(--ease);
}

#header.scrolled {
    padding: .65rem 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 1px 30px rgba(0, 0, 0, .06);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: all .25s var(--ease);
    flex-shrink: 0;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-img {
    height: 42px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -.03em;
    line-height: 1.15;
}

.logo-tagline {
    font-size: .62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    line-height: 1;
}

/* Nav */
nav ul {
    display: flex;
    align-items: center;
    gap: .25rem;
}

nav a {
    font-size: .82rem;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 50px;
    color: var(--gray-500);
    transition: all .25s var(--ease);
    position: relative;
    white-space: nowrap;
}

nav a:hover {
    color: var(--gray-900);
    background: var(--gray-50);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
    transition: all .3s var(--ease);
    transform: translateX(-50%);
}

nav>ul>li>a:hover::after {
    width: 18px;
}

/* Nav icon */
.nav-icon {
    opacity: .5;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}

.has-dropdown:hover .nav-icon {
    opacity: 1;
    color: var(--primary);
}

/* Nav chevron */
.nav-chevron {
    transition: transform .3s var(--ease);
    margin-left: 2px;
    opacity: .5;
}

.has-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Nav items with dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: .5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease);
    z-index: 100;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .85rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 8px;
    transition: all .2s var(--ease);
    border-left: 2px solid transparent;
    white-space: nowrap;
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background: var(--primary-bg);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 1rem;
}

.dd-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: all .2s var(--ease);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-600);
    padding: .5rem .85rem;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    transition: all .25s var(--ease);
    white-space: nowrap;
}

.header-phone:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

.header-phone svg {
    flex-shrink: 0;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-h);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .6rem 1.4rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 3px 14px rgba(140, 87, 36, .25);
    transition: all .3s var(--ease);
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(140, 87, 36, .35);
    filter: brightness(1.05);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .5rem;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 99px;
    transition: .3s;
}

.burger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── HERO (3/4 SCREEN BG IMAGE) ── */
#hero {
    height: 85vh;
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.03);
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 25, 23, .46) 0%, rgba(28, 25, 23, .22) 50%, rgba(140, 87, 36, .04) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 750px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(10px);
}

.hero-tag-dot {
    width: 7px;
    height: 7px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: .4;
        transform: scale(.6);
    }
}

.hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.04em;
    line-height: 1.06;
    margin-bottom: 1.25rem;
    max-width: 650px;
}

.hero-h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

/* Hero side boxes */
.hero-side-boxes {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .75rem;
    z-index: 20;
}

.hero-side-box {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .65rem 1.1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.hero-side-box:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(-4px);
}

.hero-side-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(140, 87, 36, 0.5);
    color: var(--white);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.hero-side-box-icon svg {
    width: 16px;
    height: 16px;
}

.hero-side-box:hover .hero-side-box-icon {
    background: var(--primary);
    color: var(--white);
}

.hero-side-box-text {
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Hero stats bar */
.hero-stats {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-stats-bar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    transition: all .35s var(--ease);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(140, 87, 36, .5);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.hero-stat-data {
    flex: 1;
}

.hero-stat-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero-stat-n {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-suffix {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
}

.hero-stat-lbl {
    font-size: .62rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .2rem;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-h);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .8rem 1.6rem;
    border-radius: 50px;
    transition: all .3s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(140, 87, 36, .3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(140, 87, 36, .4);
    filter: brightness(1.06);
}

.btn-outline {
    background: var(--white);
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .20);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .12);
}

/* ── SECTIONS ── */
.section {
    padding: 6rem 0;
}

[id] {
    scroll-margin-top: 88px;
}

.section.alt {
    background: var(--cream);
    position: relative;
}

#expertises {
    padding-top: 4rem;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    background: var(--primary-bg);
    padding: .35rem 1rem .35rem .7rem;
    border-radius: 50px;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
    line-height: 1.8;
    max-width: 600px;
}

.section-header {
    margin-bottom: 3.5rem;
}

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

.section-header.center .section-sub {
    margin: 0 auto;
}

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

/* ── ANIMATE ON SCROLL ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].visible {
    opacity: 1;
    transform: none;
}

[data-reveal][data-delay="1"] {
    transition-delay: .1s;
}

[data-reveal][data-delay="2"] {
    transition-delay: .2s;
}

[data-reveal][data-delay="3"] {
    transition-delay: .3s;
}

[data-reveal][data-delay="4"] {
    transition-delay: .4s;
}

/* ── EXPERTISES ── */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
    gap: 1rem;
}

.exp-grid .exp-card:nth-child(5) {
    grid-column: 1 / -1;
    max-height: 260px;
}

.exp-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}

.exp-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

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

.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28, 25, 23, .75) 0%, rgba(28, 25, 23, .05) 55%, transparent 100%);
    transition: background .5s;
}

.exp-card:hover .exp-card-overlay {
    background: linear-gradient(0deg, rgba(140, 87, 36, .88) 0%, rgba(140, 87, 36, .25) 50%, rgba(140, 87, 36, .02) 100%);
}

.exp-card-content {
    position: relative;
    z-index: 2;
    padding: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.exp-card-title {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.exp-card-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .85);
    margin-top: .4rem;
    max-width: 360px;
    opacity: 0;
    transform: translateY(8px);
    transition: .4s var(--ease);
}

.exp-card:hover .exp-card-desc {
    opacity: 1;
    transform: none;
}

.exp-card-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
    transition: .4s var(--ease-spring);
}

.exp-card:hover .exp-card-arrow {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: scale(1.12);
}

/* ── HOME EXPERTISES (cartes éditoriales) ── */
.home-expertises {
    padding-top: 4.5rem;
}

.home-exp-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.35rem;
}

.home-exp-card {
    position: relative;
}

.home-exp-card:nth-child(1) { grid-column: 1 / 5; }
.home-exp-card:nth-child(2) { grid-column: 5 / 9; }
.home-exp-card:nth-child(3) { grid-column: 9 / 13; }
.home-exp-card:nth-child(4) { grid-column: 3 / 7; }
.home-exp-card:nth-child(5) { grid-column: 7 / 11; }

.home-exp-card--featured::before {
    content: '';
    position: absolute;
    inset: 10px -8px -10px 8px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(140, 87, 36, .28), rgba(97, 59, 21, .18));
    z-index: 0;
}

.home-exp-card-link {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(28, 25, 23, .14);
    box-shadow: 0 10px 30px rgba(28, 25, 23, .06);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.home-exp-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 87, 36, .28);
    box-shadow: 0 18px 44px rgba(97, 59, 21, .12);
}

.home-exp-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gray-100);
}

.home-exp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s var(--ease);
}

.home-exp-card-link:hover .home-exp-card-media img {
    transform: scale(1.04);
}

.home-exp-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .65rem;
    padding: 1.15rem 1.2rem 1.25rem;
}

.home-exp-card-title {
    font-family: var(--font-h);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
    margin: 0;
}

.home-exp-card-text {
    font-size: .84rem;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0;
    flex: 1;
}

.home-exp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .15rem;
    font-family: var(--font-h);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gray-800);
    transition: color .25s var(--ease), gap .25s var(--ease);
}

.home-exp-card-link:hover .home-exp-card-cta {
    color: var(--primary);
    gap: .65rem;
}

/* ── HOME PRODUCTION (atelier & bureau d'études) ── */
.home-production {
    padding-top: 4.5rem;
}

.home-production-portals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.home-production-portal-link {
    position: relative;
    display: block;
    min-height: 280px;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 16px 40px rgba(28, 25, 23, .12);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.home-production-portal-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(97, 59, 21, .18);
}

.home-production-portal-link img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s var(--ease);
}

.home-production-portal-link:hover img {
    transform: scale(1.03);
}

.home-production-portal-cta {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: .7rem 1.15rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--primary-dark);
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.home-production-portal-link:hover .home-production-portal-cta {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.home-production-intro {
    max-width: 920px;
    margin: 0 auto 2.25rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.home-production-pole-title {
    margin: 0 0 1.25rem;
    text-align: center;
    font-family: var(--font-h);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.02em;
}

.home-production-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.home-production-highlight {
    padding: 1.5rem 1.4rem;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(28, 25, 23, .05);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.home-production-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(140, 87, 36, .22);
    box-shadow: var(--shadow-warm);
}

.home-production-highlight-title {
    margin: 0 0 .55rem;
    font-family: var(--font-h);
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--primary);
}

.home-production-highlight-text {
    margin: 0;
    font-size: .88rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ── PARCOURS ── */
.home-parcours {
    background:
        radial-gradient(ellipse 85% 75% at 50% 35%, #faf8f5 0%, #f3ebe2 55%, #ebe1d5 100%);
    overflow: hidden;
}

.home-parcours-head {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.home-parcours-kicker {
    display: inline-block;
    margin: 0 0 1.1rem;
    padding: .48rem 1.15rem;
    border-radius: 999px;
    background: #ebe3d9;
    border: 1px solid #d9cdc0;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: #8a7b72;
}

.home-parcours-title {
    margin: 0 0 .75rem;
    font-family: var(--font-h);
    font-size: clamp(1.9rem, 3.6vw, 2.65rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: #2d2926;
}

.home-parcours-sub {
    margin: 0;
    font-size: clamp(.88rem, 1.5vw, .98rem);
    line-height: 1.72;
    color: #7a6e66;
}

.home-parcours-track {
    position: relative;
    margin-top: 2.35rem;
    padding-bottom: 1.75rem;
}

.home-parcours-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
    position: relative;
}

.home-parcours-col {
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-parcours-step {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 292px;
    padding: 1rem 1rem 1.25rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(231, 226, 220, .9);
    box-shadow: 0 8px 24px rgba(45, 41, 38, .05);
}

.home-parcours-step--plain {
    padding-bottom: 1.25rem;
}

.home-parcours-step:not(.home-parcours-step--plain) {
    padding-bottom: 2.35rem;
}

.home-parcours-num {
    font-family: var(--font-h);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: rgba(196, 168, 138, .85);
}

.home-parcours-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    margin: .35rem 0 .5rem;
}

.home-parcours-icon-img {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.home-parcours-step-title {
    margin: 0 0 .4rem;
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.35;
    color: #2d2926;
    text-align: center;
}

.home-parcours-step-text {
    flex: 1;
    margin: 0;
    font-size: .78rem;
    line-height: 1.62;
    color: #7a6e66;
    text-align: center;
}

.home-parcours-btn {
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 1.75rem);
    max-width: 196px;
    min-height: 38px;
    padding: .62rem .85rem;
    border-radius: 10px;
    border: 1.5px solid #c9b8a8;
    background: #f0e8de;
    color: #5c534d;
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(45, 41, 38, .06);
    transition: .25s ease;
    z-index: 5;
}

.home-parcours-btn:hover {
    border-color: rgba(140, 87, 36, .45);
    color: var(--primary);
    background: #ebe1d4;
}

/* ── ZONES D'INTERVENTION (style logistique / secteur) ── */
.entreprise-secteur-block--zones {
    background: linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 48%, var(--primary-glow) 100%);
}

.entreprise-secteur-block--zones .section-label {
    color: #5c4a32;
    background: #f5f0e8;
}

.entreprise-secteur-block--zones .section-label::before {
    background: #8b6914;
}

.entreprise-secteur-single {
    margin: 0;
}

.entreprise-secteur-single-img {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .4rem;
    background: var(--gray-50);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    line-height: 0;
}

.entreprise-secteur-single-img img {
    width: 100%;
    height: auto;
    max-height: min(52vh, 500px);
    object-fit: contain;
    object-position: center;
    display: block;
}

.entreprise-secteur-block--zones .entreprise-secteur-single-img {
    background: var(--cream);
    min-height: 280px;
}

.entreprise-secteur-block--zones .entreprise-secteur-single-img img {
    max-height: min(58vh, 560px);
    object-fit: contain;
}

.entreprise-secteur-single-caption {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    margin-top: .6rem;
    padding: 0 .1rem;
}

.entreprise-secteur-single-caption strong {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.35;
}

.entreprise-secteur-single-caption span {
    font-size: .7rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
    width: 100%;
    max-width: 560px;
    line-height: 0;
}

.about-img1 {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-white);
    z-index: 2;
}

.about-badge {
    position: absolute;
    left: 36%;
    top: 1.5%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(140, 87, 36, .3);
    z-index: 3;
    line-height: 1.2;
    animation: float 5s ease-in-out infinite;
}

.about-badge-n {
    font-family: var(--font-h);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge-lbl {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .85;
    margin-top: 4px;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feat {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .75rem;
    border-radius: 14px;
    transition: all .3s var(--ease);
}

.feat:hover {
    background: var(--primary-bg);
}

.feat-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem;
}

.feat-title {
    font-weight: 700;
    font-size: .88rem;
    color: var(--gray-900);
    margin-bottom: .1rem;
}

.feat-desc {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ── REALISATIONS ── */
.real-showcase {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(240px, 1fr));
    gap: 1rem;
    max-width: 1080px;
    margin: 0 auto;
}

.real-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: var(--gray-200);
    min-height: 0;
    isolation: isolate;
}

.real-item--hero {
    grid-row: 1 / 3;
    grid-column: 1;
}

.real-item--t1 {
    grid-column: 2;
    grid-row: 1;
}

.real-item--t2 {
    grid-column: 3;
    grid-row: 1;
}

.real-item--b1 {
    grid-column: 2;
    grid-row: 2;
}

.real-item--b2 {
    grid-column: 3;
    grid-row: 2;
}

.real-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s cubic-bezier(.25, .46, .45, .94);
}

.real-item--hero img {
    object-position: center center;
}

.real-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(28, 25, 23, .48) 100%);
    opacity: .65;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: 1;
}

.real-item:hover::after {
    opacity: 1;
}

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

.real-item-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1.35rem;
    z-index: 2;
    transform: translateY(6px);
    transition: transform .35s ease;
}

.real-item:hover .real-item-cap {
    transform: translateY(0);
}

.real-cat {
    display: inline-block;
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--white);
    background: rgba(140, 87, 36, .92);
    padding: 5px 11px;
    border-radius: 50px;
    margin-bottom: .5rem;
    backdrop-filter: blur(4px);
}

.real-title {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.real-title--mixed {
    text-transform: none;
    letter-spacing: 0;
}

.real-item--hero .real-title {
    font-size: 1.25rem;
}

.real-loc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    margin: .25rem 0 0;
}

.real-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.real-cta .btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: .85rem 1.75rem;
    font-weight: 700;
    border-radius: 50px;
    transition: .3s ease;
}

.real-cta .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.real-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1080px;
    margin: 1rem auto 0;
}

.real-item--gallery {
    min-height: 220px;
}

.real-item--hidden {
    display: none;
}

.real-more-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.75rem;
}

.real-more-wrap .btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: .85rem 1.75rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s ease;
}

.real-more-wrap .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ── CERTS ── */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.cert-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: .4s var(--ease);
    transform-origin: left;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(140, 87, 36, .08);
    border-color: var(--primary-glow);
}

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

.cert-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    padding: .5rem;
    transition: all .3s var(--ease);
}

.cert-card:hover .cert-logo {
    background: var(--primary-glow);
}

.cert-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.cert-logo.text-logo {
    font-family: var(--font-h);
    font-size: .85rem;
    font-weight: 900;
    color: var(--primary);
    text-align: center;
    line-height: 1.3;
}

.cert-card h3 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: .5rem;
}

.cert-card p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ── CONTACT / CTA ── */
#contact {
    background: linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 50%, var(--primary-glow) 100%);
    overflow: hidden;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(140, 87, 36, .03) 1px, transparent 1px);
    background-size: 32px 32px;
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-headline {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.contact-sub {
    font-size: .95rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-infos {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: .85rem;
    align-items: center;
    padding: .65rem .75rem;
    border-radius: 14px;
    transition: all .3s var(--ease);
}

.contact-info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all .3s var(--ease);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.contact-info-text strong {
    display: block;
    color: var(--gray-800);
    font-weight: 600;
    font-size: .85rem;
}

.contact-info-text span {
    color: var(--gray-500);
    font-size: .82rem;
    line-height: 1.4;
}

.form {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    background: var(--white);
    padding: 2.25rem;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .04);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.field label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-500);
}

.field input,
.field select,
.field textarea {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    padding: .75rem 1rem;
    color: var(--gray-800);
    font-family: var(--font-b);
    font-size: .9rem;
    transition: all .25s var(--ease);
    outline: none;
    resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--gray-400);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(140, 87, 36, .08);
}

.field select option {
    background: var(--white);
    color: var(--gray-800);
}

/* Custom select dropdown */
.custom-select {
    position: relative;
}

.custom-select-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.custom-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    background: var(--gray-50);
    color: var(--gray-800);
    font-family: var(--font-b);
    font-size: .9rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all .25s var(--ease);
}

.custom-select-trigger:hover {
    border-color: rgba(140, 87, 36, .28);
    background: var(--white);
}

.custom-select-trigger:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(140, 87, 36, .08);
}

.custom-select.is-open .custom-select-trigger {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(140, 87, 36, .08);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select-value.is-placeholder {
    color: var(--gray-400);
    font-weight: 500;
}

.custom-select-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    background: var(--primary-glow);
    color: var(--primary);
    flex-shrink: 0;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.custom-select.is-open .custom-select-icon,
.custom-select-trigger:focus .custom-select-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.custom-select.has-value .custom-select-trigger {
    border-color: rgba(140, 87, 36, .22);
    background: var(--white);
}

.custom-select.is-invalid .custom-select-trigger {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, .12);
}

fieldset.field.form-choice.is-invalid .form-choice-group {
    outline: 2px solid rgba(225, 29, 72, .35);
    outline-offset: 4px;
    border-radius: 12px;
}

.form-error {
    margin: 0 0 .85rem;
    padding: .75rem .9rem;
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: .86rem;
    line-height: 1.5;
}

.custom-select-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: .35rem;
    border: 1.5px solid var(--primary);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(28, 25, 23, .12);
    max-height: 16rem;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.custom-select-menu:not([hidden]) {
    animation: customSelectIn .18s var(--ease);
}

@keyframes customSelectIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-select-option {
    padding: .72rem .85rem;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: background .18s var(--ease), color .18s var(--ease);
}

.custom-select-option:hover,
.custom-select-option.is-focused {
    background: var(--primary-glow);
    color: var(--primary-dark);
}

.custom-select-option.is-selected {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.custom-select-option.is-selected:hover,
.custom-select-option.is-selected.is-focused {
    background: var(--primary-dark);
    color: var(--white);
}

fieldset.field.form-choice {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

fieldset.field.form-choice legend {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-500);
    margin-bottom: .55rem;
    padding: 0;
}

.form-choice-group {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.form-choice-option {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .68rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 999px;
    background: var(--gray-50);
    cursor: pointer;
    font-size: .88rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all .25s var(--ease);
}

.form-choice-option:hover {
    border-color: rgba(140, 87, 36, .28);
    background: var(--white);
}

.form-choice-option input {
    accent-color: var(--primary);
    flex-shrink: 0;
}

.form-choice-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: var(--gray-900);
    box-shadow: 0 0 0 3px rgba(140, 87, 36, .08);
}

.form-date-intervention .form-date-row {
    margin: 0;
}

.form-date-intervention .form-date-row .field {
    margin: 0;
}

.form-date-intervention.is-invalid select {
    border-color: #c2410c;
}

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

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .78rem;
    line-height: 1.55;
    color: var(--gray-500);
    cursor: pointer;
}

.form-consent input {
    margin-top: .15rem;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.form-consent a {
    color: var(--primary);
    text-decoration: underline;
}

/* Footer compact, masqué sur desktop (affiché via mobile-app.css) */
.footer-compact {
    display: none;
}

/* ── FOOTER ── */
#site-footer {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 2.5rem;
}

.footer-title {
    font-family: var(--font-h);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a365d;
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: .82rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.1rem;
    text-decoration: none;
}

.footer-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: .03em;
    text-transform: uppercase;
    line-height: 1.1;
    transition: color .2s var(--ease);
}

.footer-brand:hover .footer-brand-name {
    color: var(--primary);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-list a {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    font-weight: 500;
    color: #1a365d;
    transition: all .2s var(--ease);
}

.footer-list a svg {
    color: var(--primary);
    flex-shrink: 0;
    transition: color .2s;
}

.footer-list a:hover {
    color: var(--primary);
}

/* Footer title large */
.footer-title-lg {
    font-size: 1.25rem;
    letter-spacing: 0;
}

/* Social colored icons */
.footer-social-link {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.footer-social-fb svg {
    color: #1877F2;
}

.footer-social-li svg {
    color: #0A66C2;
}

.footer-social-ig svg {
    color: #E4405F;
}

.footer-social-fb:hover svg {
    color: #1877F2;
}

.footer-social-li:hover svg {
    color: #0A66C2;
}

.footer-social-ig:hover svg {
    color: #E4405F;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #f1f5f9;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.footer-copy {
    font-size: .75rem;
    font-weight: 500;
    color: #64748b;
}

.footer-legal {
    font-size: .75rem;
    color: #94a3b8;
}

.footer-credit {
    font-size: .75rem;
    color: var(--primary);
    background: rgba(140, 87, 36, 0.1);
    border: 1px solid rgba(140, 87, 36, 0.2);
    padding: .35rem .9rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-weight: 500;
}

.footer-heart {
    font-size: .8rem;
    margin: 0 .1rem;
}

.footer-credit a {
    color: var(--primary);
    font-weight: 700;
    transition: color .2s;
}

.footer-credit a:hover {
    color: var(--primary-dark);
}

/* ── BACK TO TOP ── */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s var(--ease);
    z-index: 900;
    box-shadow: 0 4px 16px rgba(140, 87, 36, .3);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(140, 87, 36, .45);
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .burger {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    /* ─ Mobile nav drawer, #main-nav uniquement (pas .app-tabbar) ─ */
    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        box-shadow: -12px 0 50px rgba(0, 0, 0, .1);
        padding: 0;
        transition: .4s var(--ease);
        z-index: 999;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    #main-nav.open {
        right: 0;
    }

    #main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 5rem 1.25rem 1.5rem;
        flex: 1;
    }

    #main-nav>ul>li {
        border-bottom: 1px solid var(--gray-100);
    }

    #main-nav>ul>li:last-child {
        border-bottom: none;
    }

    #main-nav a {
        color: var(--gray-700);
        font-size: .95rem;
        font-weight: 600;
        width: 100%;
        padding: .85rem .5rem;
        border-radius: 0;
    }

    #main-nav > ul > li > a,
    #main-nav .dropdown a {
        color: var(--gray-700);
    }

    #main-nav .mobile-drawer-actions a {
        width: auto;
        padding: 0;
        border-radius: 12px;
    }

    #main-nav a::after {
        display: none;
    }

    #main-nav a:hover {
        background: transparent;
        color: var(--primary);
    }

    .nav-chevron {
        margin-left: auto;
    }

    /* Mobile dropdowns */
    .dropdown {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        background: var(--gray-50);
        backdrop-filter: none;
        border: none;
        border-radius: 10px;
        padding: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s var(--ease);
        margin-bottom: .25rem;
    }

    .dropdown::before {
        display: none;
    }

    .has-dropdown.open .dropdown {
        max-height: 500px;
        padding: .35rem 0;
    }

    .dropdown a {
        font-size: .88rem;
        font-weight: 500;
        color: var(--gray-500);
        padding: .6rem 1rem;
        border-left: 2px solid transparent;
    }

    .dropdown a:hover {
        color: var(--primary);
        border-left-color: var(--primary);
        background: var(--primary-bg);
    }

    /* Hero */
    #hero {
        height: auto;
        min-height: 85vh;
        padding-bottom: 6rem;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .hero-side-boxes {
        display: none;
        /* Hide on mobile to save space, or use flex-direction: column if needed. Opted for hide. */
    }

    .hero-h1 {
        font-size: 2rem;
    }

    .hero-stats {
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
        background: transparent;
    }

    .hero-stats-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: .5rem;
        padding: 0 1.15rem;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-stat {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: .35rem;
        padding: .85rem .45rem;
        background: rgba(255, 255, 255, .07);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 10px;
        border-right: none;
    }

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

    .hero-stat:hover {
        transform: none;
        background: rgba(255, 255, 255, .07);
    }

    .hero-stat-icon {
        display: flex;
        width: 32px;
        height: 32px;
    }

    .hero-stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-stat-row {
        justify-content: center;
    }

    .hero-stat-n {
        font-size: 1.4rem;
    }

    .hero-stat-lbl {
        font-size: .52rem;
    }

    /* Grids */
    .home-exp-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-exp-card:nth-child(1),
    .home-exp-card:nth-child(2),
    .home-exp-card:nth-child(3),
    .home-exp-card:nth-child(4),
    .home-exp-card:nth-child(5) {
        grid-column: 1 / -1;
    }

    .home-exp-card--featured::before {
        inset: 8px -6px -8px 6px;
    }

    .home-production-portals {
        grid-template-columns: 1fr;
    }

    .home-production-highlights {
        grid-template-columns: 1fr;
    }

    .home-parcours-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-parcours-step {
        min-height: 0;
    }

    .exp-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: .75rem;
    }

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

    .about-images {
        max-width: 100%;
    }

    .about-img2 {
        width: 50%;
    }

    .about-badge {
        left: 32%;
        top: 1%;
        padding: 0.75rem 1rem;
    }

    .about-badge-n {
        font-size: 1.75rem;
    }

    .about-feats {
        grid-template-columns: 1fr;
    }

    .real-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .real-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .real-item--hero {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 320px;
    }

    .real-item--t1,
    .real-item--t2,
    .real-item--b1,
    .real-item--b2 {
        grid-column: auto;
        grid-row: auto;
        min-height: 200px;
    }

    .real-item:not(.real-item--hero) {
        min-height: 200px;
    }

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

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

@media(max-width:600px) {
    .section {
        padding: 4rem 0;
    }

    .home-parcours-steps {
        grid-template-columns: 1fr;
    }

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

    .hero-h1 {
        font-size: 1.85rem;
    }

    .hero-sub {
        font-size: .95rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 1.5rem 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: .4rem;
    }

    .footer-credit {
        margin-left: 0;
    }
}

/* ══ PAGE INTÉRIEURE, HERO ══ */
.page-hero {
    position: relative;
    min-height: 420px;
    height: 52vh;
    max-height: 540px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 0;
    padding-top: var(--site-top-height, 72px);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    transform: scale(1.02);
    animation: pageHeroZoom 20s ease-out forwards;
}

.page-hero-bg--sharp {
    transform: none;
    animation: none;
    backface-visibility: visible;
    will-change: auto;
    background-size: cover;
    background-position: center center;
    image-rendering: auto;
}

.page-hero-bg--fit {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-hero--photo {
    min-height: unset;
    height: 25vw;
    max-height: none;
}

.page-hero--photo .page-hero-bg--fit {
    background-color: var(--cream);
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-hero--photo .page-hero-bg--sharp {
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
}

@keyframes pageHeroZoom {
    to { transform: scale(1.05); }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(12, 10, 9, .15) 0%,
        rgba(12, 10, 9, .45) 45%,
        rgba(12, 10, 9, .82) 100%);
    z-index: 1;
}

.page-hero--no-overlay .page-hero-overlay {
    display: none;
}

.page-hero--no-overlay .page-hero-title,
.page-hero--no-overlay .page-hero-sub {
    text-shadow: 0 1px 10px rgba(0, 0, 0, .35), 0 0 24px rgba(0, 0, 0, .2);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 3.5rem;
    width: 100%;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .1rem;
    margin-bottom: 1.35rem;
    padding: .45rem .7rem .45rem .55rem;
    max-width: 100%;
    border-radius: 999px;
    background: rgba(12, 10, 8, .52);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .22);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .01em;
    text-transform: none;
    color: rgba(255, 255, 255, .62);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    padding: .18rem .42rem;
    border-radius: 999px;
    transition: color .2s var(--ease), background .2s var(--ease);
}

.page-breadcrumb a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.page-breadcrumb a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .45);
    outline-offset: 1px;
}

.page-breadcrumb > span[aria-hidden="true"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    color: rgba(255, 255, 255, .34);
    font-size: .78rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    user-select: none;
}

.page-breadcrumb > span:not([aria-hidden="true"]) {
    color: var(--white);
    font-weight: 600;
    padding: .18rem .42rem;
    max-width: min(100%, 30ch);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-breadcrumb--light,
.recrut-offre-breadcrumb {
    background: rgba(255, 255, 255, .94);
    border-color: rgba(15, 12, 10, .08);
    box-shadow: 0 4px 18px rgba(15, 12, 10, .07);
    color: var(--gray-500);
}

.page-breadcrumb--light a,
.recrut-offre-breadcrumb a {
    color: var(--gray-500);
}

.page-breadcrumb--light a:hover,
.recrut-offre-breadcrumb a:hover {
    color: var(--gray-900);
    background: rgba(15, 12, 10, .05);
}

.page-breadcrumb--light > span[aria-hidden="true"],
.recrut-offre-breadcrumb > span[aria-hidden="true"] {
    color: var(--gray-300);
}

.page-breadcrumb--light > span:not([aria-hidden="true"]),
.recrut-offre-breadcrumb > span:not([aria-hidden="true"]) {
    color: var(--gray-900);
}

.page-hero--no-overlay .page-breadcrumb {
    background: rgba(12, 10, 8, .58);
    border-color: rgba(255, 255, 255, .16);
}

.page-hero--no-overlay .page-breadcrumb a {
    color: rgba(255, 255, 255, .82);
}

.page-hero--no-overlay .page-breadcrumb a:hover {
    color: var(--white);
}

.page-hero--no-overlay .page-breadcrumb > span[aria-hidden="true"] {
    color: rgba(255, 255, 255, .38);
}

.page-hero--no-overlay .page-breadcrumb > span:not([aria-hidden="true"]) {
    color: var(--white);
}

@media (max-width: 640px) {
    .page-breadcrumb {
        font-size: .68rem;
        padding: .38rem .55rem .38rem .42rem;
        border-radius: 14px;
    }

    .page-breadcrumb a,
    .page-breadcrumb > span:not([aria-hidden="true"]) {
        padding: .14rem .34rem;
    }
}

.page-hero .hero-tag {
    margin-bottom: 1rem;
}

.page-hero-title {
    font-family: var(--font-h);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.045em;
    line-height: 1.05;
    max-width: 720px;
}

.page-hero-title em {
    font-style: normal;
    color: var(--primary-light);
}

.page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.75;
    margin-top: 1rem;
}

/* ══ FEDER PAGE ══ */
.feder-strip {
    position: relative;
    z-index: 3;
    margin-top: -3rem;
    padding-bottom: 1rem;
}

.feder-eu-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.25rem;
}

.feder-eu-flag {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    overflow: hidden;
}

.feder-eu-flag svg {
    width: 48px;
    height: 48px;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.feder-eu-card strong {
    display: block;
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -.02em;
}

.feder-eu-card span {
    font-size: .8rem;
    color: var(--gray-500);
}

.feder-kpi-bar {
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    background: var(--white);
    padding: .75rem;
}

.feder-kpi-bar .hero-stat {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.feder-kpi-bar .hero-stat:hover {
    background: var(--white);
    border-color: rgba(140, 87, 36, .2);
    box-shadow: var(--shadow-warm);
}

.feder-kpi-bar .hero-stat-n,
.feder-kpi-bar .hero-stat-suffix {
    color: var(--primary);
}

.feder-kpi-bar .hero-stat-lbl {
    color: var(--gray-500);
}

.feder-stat-eu .hero-stat-icon {
    background: rgba(0, 51, 153, .1);
    color: #003399;
}

.feder-stat-eu .hero-stat-n {
    color: #003399;
}

.feder-images {
    margin-bottom: 1.5rem;
}

.feder-highlight {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-bg), rgba(187, 123, 57, .06));
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
    box-shadow: var(--shadow-warm);
}

.feder-highlight-num {
    font-family: var(--font-h);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
}

.feder-highlight p {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
}

.feder-highlight strong {
    color: var(--gray-800);
    font-weight: 600;
}

.feder-feats {
    max-width: 900px;
    margin: 0 auto;
}

.feder-feat-eu {
    background: rgba(0, 51, 153, .08) !important;
    color: #003399 !important;
}

.feder-video {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--black);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.feder-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.feder-title-deco .feder-slash {
    color: var(--primary-light);
    font-style: normal;
    font-weight: 700;
    opacity: .85;
}

.feder-prose {
    max-width: 780px;
    margin: 0 auto;
}

.feder-prose p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.feder-prose p:last-child {
    margin-bottom: 0;
}

.feder-layout {
    grid-template-columns: 1fr 1.35fr;
    gap: 3rem;
    align-items: start;
}

.feder-copy .section-title {
    margin-bottom: 1.5rem;
}

.feder-media {
    position: sticky;
    top: 100px;
    width: 100%;
}

.feder-video--side {
    max-width: none;
    margin: 0;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
}

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

.feder-video--inline {
    margin-top: 2.5rem;
}

@media (max-width: 960px) {
    .feder-media {
        position: static;
    }

    .feder-kpi-bar--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero:not(.page-hero--photo) {
        min-height: 360px;
        height: auto;
        padding-top: 64px;
        margin-top: 0;
    }

    .page-hero--photo {
        min-height: unset;
        height: 25vw;
        padding-top: var(--site-top-height, 64px);
        margin-top: 0;
    }

    .feder-strip {
        margin-top: -1.5rem;
    }

    .feder-eu-card {
        flex-direction: column;
        text-align: center;
    }

    .feder-kpi-bar {
        flex-direction: column;
    }

    .feder-highlight {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--primary);
        border-radius: 16px;
    }
}

/* ══ PAGE ENTREPRISE ══ */
.entreprise-strip {
    position: relative;
    z-index: 3;
    margin-top: -3rem;
    padding-bottom: 1rem;
}

.entreprise-kpi-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}

.entreprise-kpi-bar .hero-stat {
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    backdrop-filter: none;
}

.entreprise-kpi-bar .hero-stat-n,
.entreprise-kpi-bar .hero-stat-suffix {
    color: var(--primary);
}

.entreprise-kpi-bar .hero-stat-lbl {
    color: var(--gray-500);
}

.entreprise-kpi-bar .hero-stat-icon {
    background: var(--primary-bg);
    color: var(--primary);
}

.hero-stat-glyph {
    font-family: var(--font-b), system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1;
}

.entreprise-kpi-bar .hero-stat--currency .hero-stat-icon {
    font-family: var(--font-b), system-ui, sans-serif;
}

.entreprise-kpi-bar .hero-stat-row {
    flex-wrap: nowrap;
    white-space: nowrap;
}

.entreprise-kpi-bar .hero-stat-n {
    font-variant-numeric: tabular-nums;
}

.entreprise-kpi-bar .hero-stat-suffix {
    font-family: var(--font-b);
}

.entreprise-metiers {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.entreprise-metiers-grid {
    align-items: center;
    gap: 2.5rem;
}

.entreprise-metiers-grid--reverse .entreprise-metiers-copy {
    order: 2;
}

.entreprise-metiers-grid--reverse .entreprise-metiers-media {
    order: 1;
}

.entreprise-metiers-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1.35rem;
}

.entreprise-metier-tag {
    display: inline-flex;
    align-items: center;
    padding: .38rem .82rem;
    border-radius: 999px;
    border: 1px solid rgba(140, 87, 36, .16);
    background: var(--white);
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--primary);
    line-height: 1.25;
    box-shadow: var(--shadow-sm);
}

.entreprise-metiers-copy .section-title,
.entreprise-secteur-block--implantation .entreprise-secteur-copy .section-title {
    margin-bottom: 1.1rem;
}

.entreprise-metiers-links {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.35rem;
}

.entreprise-metier-link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .45rem .85rem;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-family: var(--font-h);
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-700);
    text-decoration: none;
    transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.entreprise-metier-link:hover {
    border-color: rgba(140, 87, 36, .28);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.entreprise-metiers-media {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
    line-height: 0;
}

.entreprise-metiers-media img {
    display: block;
    width: 100%;
    height: auto;
}

.entreprise-metiers-media figcaption {
    padding: .85rem 1rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray-500);
    line-height: 1.4;
    background: var(--white);
    line-height: 1.45;
}

.entreprise-production {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.entreprise-carousel-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.entreprise-durable {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.entreprise-reportage {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.entreprise-reportage .section-sub {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.entreprise-reportage-media {
    width: 100%;
    max-width: 960px;
    margin: 2rem auto 0;
}

.entreprise-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-900);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.entreprise-video-player--large .entreprise-reportage-video,
.entreprise-video-player--large > video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--black);
    vertical-align: middle;
}

.entreprise-video-player--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--gray-100) 0%, #e7e5e4 100%);
}

.entreprise-video-player [hidden] {
    display: none !important;
}

.entreprise-video-thumb,
.entreprise-video-stage {
    position: absolute;
    inset: 0;
}

.entreprise-video-thumb {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    cursor: pointer;
    background: transparent;
    transition: transform .3s var(--ease);
}

.entreprise-video-thumb:hover {
    transform: scale(1.01);
}

.entreprise-video-thumb:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

.entreprise-video-thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entreprise-video-thumb-shade {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 23, .28);
    transition: background .25s var(--ease);
    pointer-events: none;
}

.entreprise-video-thumb:hover .entreprise-video-thumb-shade {
    background: rgba(28, 25, 23, .38);
}

.entreprise-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    pointer-events: none;
    transition: transform .25s var(--ease);
}

.entreprise-video-play svg {
    margin-left: 3px;
}

.entreprise-video-thumb:hover .entreprise-video-play {
    transform: scale(1.08);
}

.entreprise-video-duration {
    position: absolute;
    right: .65rem;
    bottom: .65rem;
    z-index: 2;
    padding: .25rem .5rem;
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--white);
    background: rgba(0, 0, 0, .72);
    pointer-events: none;
}

.entreprise-video-stage video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--black);
}

.entreprise-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 1.5rem;
    text-align: center;
}

.entreprise-video-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(140, 87, 36, .1);
    color: var(--primary);
}

.entreprise-video-placeholder strong {
    font-family: var(--font-h);
    font-size: .92rem;
    font-weight: 800;
    color: var(--gray-800);
}

.entreprise-video-placeholder span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gray-500);
}

@media (max-width: 900px) {
    .entreprise-reportage-media {
        max-width: none;
    }
}

.entreprise-durable-labels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.entreprise-durable-label {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.15rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

.entreprise-durable-label:hover {
    border-color: rgba(140, 87, 36, .22);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.entreprise-durable-label-logo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .45rem;
}

.entreprise-durable-label-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.entreprise-durable-label h3 {
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 .2rem;
}

.entreprise-durable-label p {
    margin: 0;
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.45;
}

.entreprise-slide-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: 280px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(145deg, var(--gray-100) 0%, #e7e5e4 100%);
    color: var(--gray-600);
}

.entreprise-slide-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(140, 87, 36, .1);
    color: var(--primary);
}

.entreprise-slide-placeholder strong {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-800);
}

.entreprise-slide-placeholder span {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.entreprise-secteur-thumb--placeholder .entreprise-secteur-thumb-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 3 / 2;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 8px 8px 0 0;
}

.entreprise-secteurs-intro {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}

.entreprise-secteurs-intro .section-sub {
    max-width: 46rem;
    margin: 0 auto;
}

.entreprise-secteur-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.entreprise-secteur-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 3rem;
}

.entreprise-secteur-layout--reverse .entreprise-secteur-copy {
    order: 2;
}

.entreprise-secteur-layout--reverse .entreprise-secteur-media {
    order: 1;
}

.entreprise-secteur-copy .section-title {
    margin-bottom: 1rem;
}

.entreprise-secteur-feats {
    margin: 1.5rem 0 1.75rem;
}

.entreprise-project-chapeau {
    margin-bottom: 1rem;
}

.entreprise-project-specs {
    margin: 1.25rem 0 0;
    gap: .45rem .65rem;
}

.entreprise-project-specs .feat {
    gap: .5rem;
    align-items: center;
    padding: .4rem .35rem;
    border-radius: 10px;
}

.entreprise-project-specs .feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.entreprise-project-specs .feat-icon svg {
    width: 13px;
    height: 13px;
}

.entreprise-project-specs .feat-title {
    font-size: .76rem;
    margin-bottom: .05rem;
    line-height: 1.3;
}

.entreprise-project-specs .feat-desc {
    font-size: .72rem;
    line-height: 1.35;
    color: var(--gray-600);
}

.entreprise-secteur-block:has(.entreprise-project-specs) .entreprise-secteur-layout {
    align-items: start;
}

.entreprise-secteur-block:has(.entreprise-project-specs) .about-text {
    margin-bottom: .85rem;
}

.entreprise-secteur-block:has(.entreprise-project-specs) .about-text:last-of-type {
    margin-bottom: 0;
}

.entreprise-secteur-cta {
    margin-top: .25rem;
}

.entreprise-secteur-block--public .section-label {
    color: #1d4ed8;
    background: rgba(29, 78, 216, .08);
}

.entreprise-secteur-block--public .section-label::before {
    background: #1d4ed8;
}

.entreprise-secteur-block--prive .section-label {
    color: #7c3aed;
    background: rgba(124, 58, 237, .08);
}

.entreprise-secteur-block--prive .section-label::before {
    background: #7c3aed;
}

.entreprise-secteur-block--maison-bois .section-label {
    color: #166534;
    background: rgba(34, 120, 80, .08);
}

.entreprise-secteur-block--maison-bois .section-label::before {
    background: #166534;
}

.entreprise-secteur-media {
    width: 100%;
}

.entreprise-carousel--framed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}

.entreprise-carousel {
    position: relative;
    background: var(--gray-50);
}

.entreprise-carousel-viewport {
    overflow: hidden;
    background: var(--gray-50);
}

.entreprise-carousel-track {
    display: flex;
    transition: transform .55s var(--ease);
    will-change: transform;
    align-items: stretch;
}

.entreprise-carousel-slide {
    margin: 0;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .65rem;
    min-height: 280px;
    line-height: 0;
    background: var(--gray-50);
}

.entreprise-carousel-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(52vh, 500px);
    object-fit: contain;
    object-position: center;
    display: block;
}

.entreprise-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: var(--gray-900);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.entreprise-carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.entreprise-carousel-btn.is-hidden {
    display: none;
}

.entreprise-carousel-btn--prev {
    left: 1rem;
}

.entreprise-carousel-btn--next {
    right: 1rem;
}

.entreprise-carousel-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.entreprise-carousel-caption {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    min-width: 0;
}

.entreprise-carousel-caption strong {
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
}

.entreprise-carousel-caption span {
    font-size: .78rem;
    line-height: 1.45;
    color: var(--gray-500);
}

.entreprise-carousel-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .45rem;
    flex-shrink: 0;
}

.entreprise-carousel-counter {
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: .04em;
}

.entreprise-carousel-dots {
    display: flex;
    gap: .35rem;
}

.entreprise-carousel-dot {
    width: .5rem;
    height: .5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.entreprise-carousel-dot.is-active {
    background: var(--primary);
    transform: scale(1.15);
}

.entreprise-secteur-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: .65rem;
    margin-top: .85rem;
}

.entreprise-secteur-thumb {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: .35rem;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}

.entreprise-secteur-thumb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.entreprise-secteur-thumb.is-active {
    border-color: var(--primary);
    box-shadow: var(--shadow-warm);
}

.entreprise-secteur-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.entreprise-secteur-thumb span {
    font-family: var(--font-h);
    font-size: .68rem;
    font-weight: 700;
    color: var(--gray-700);
    line-height: 1.25;
    text-align: left;
    padding: 0 .15rem .15rem;
}

.entreprise-intro {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.55fr);
    align-items: stretch;
    gap: 2.25rem;
}

.entreprise-copy .section-title {
    margin-bottom: 1.25rem;
}

.entreprise-media {
    display: block;
    width: 100%;
}

.entreprise-media-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

.entreprise-media-site {
    display: block;
    width: 100%;
    height: auto;
}

.entreprise-media-leader {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 118px;
    height: 118px;
    border-radius: 12px;
    object-fit: contain;
    object-position: center;
    background: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
    z-index: 2;
}

.entreprise-video-section .section-header {
    margin-bottom: 2rem;
}

.entreprise-fb-video {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--black);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.entreprise-fb-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.entreprise-video-link {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: .9rem;
}

.entreprise-video-link a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.entreprise-video-link a:hover {
    text-decoration: underline;
}

.entreprise-portrait {
    margin: 0;
    position: relative;
}

.entreprise-portrait img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 1;
}

.entreprise-portrait figcaption {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.entreprise-portrait figcaption strong {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-900);
}

.entreprise-portrait figcaption span {
    font-size: .82rem;
    color: var(--gray-500);
}

.entreprise-gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.entreprise-photo {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow);
    line-height: 0;
}

.entreprise-photo img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}

.entreprise-photo:hover img {
    transform: scale(1.03);
}

.entreprise-photo figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.15rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(28, 25, 23, .72));
    line-height: 1.35;
}

.entreprise-photo--main img {
    min-height: 360px;
}

.entreprise-photo--portrait img {
    object-position: center center;
    aspect-ratio: 1;
    min-height: 320px;
}

.entreprise-links {
    padding-bottom: 5rem;
}

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

.entreprise-link-card {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    padding: 1.35rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    text-decoration: none;
}

.entreprise-link-card:hover {
    border-color: rgba(140, 87, 36, .25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-warm);
}

.entreprise-link-ico {
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--primary);
}

.entreprise-link-card strong {
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
}

.entreprise-link-card span:last-child {
    font-size: .78rem;
    color: var(--gray-500);
    line-height: 1.45;
}

@media (max-width: 900px) {
    .entreprise-kpi-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .entreprise-gallery {
        grid-template-columns: 1fr;
    }

    .entreprise-link-grid {
        grid-template-columns: 1fr 1fr;
    }

    .entreprise-intro {
        grid-template-columns: 1fr;
    }

    .entreprise-metiers-grid {
        grid-template-columns: 1fr;
    }

    .entreprise-metiers-grid--reverse .entreprise-metiers-copy,
    .entreprise-metiers-grid--reverse .entreprise-metiers-media {
        order: unset;
    }

    .entreprise-secteur-layout,
    .entreprise-secteur-layout--reverse {
        grid-template-columns: 1fr;
    }

    .entreprise-secteur-layout--reverse .entreprise-secteur-copy,
    .entreprise-secteur-layout--reverse .entreprise-secteur-media {
        order: unset;
    }

    .entreprise-secteur-feats,
    .entreprise-project-specs {
        grid-template-columns: 1fr;
    }

    .entreprise-media-leader {
        width: 88px;
        height: 88px;
        right: .85rem;
        bottom: .85rem;
    }
}

@media (max-width: 600px) {
    .entreprise-kpi-bar {
        grid-template-columns: 1fr 1fr;
        gap: .55rem;
    }

    .entreprise-kpi-bar .hero-stat {
        padding: .85rem .65rem;
    }

    .entreprise-kpi-bar .hero-stat-n {
        font-size: 1.45rem;
    }

    .entreprise-link-grid {
        grid-template-columns: 1fr;
    }
}

/* ══ MENTIONS LÉGALES ══ */
.page-hero--legal {
    min-height: 340px;
    height: 42vh;
    max-height: 420px;
}

.legal-page {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.legal-stack {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    grid-template-rows: auto auto;
    align-items: start;
}

.legal-card--site {
    grid-column: 1;
    grid-row: 1 / -1;
}

.legal-card--host {
    grid-column: 2;
    grid-row: 1;
}

.legal-card--privacy {
    grid-column: 2;
    grid-row: 2;
}

@media (max-width: 900px) {
    .legal-stack {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .legal-card--site,
    .legal-card--host,
    .legal-card--privacy {
        grid-column: 1;
        grid-row: auto;
    }
}

.legal-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 18px;
    padding: 1.75rem 1.85rem;
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.02em;
    margin: 0 0 1.15rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--gray-100);
}

.legal-subtitle {
    font-family: var(--font-h);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin: 1.5rem 0 .85rem;
}

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

.legal-mini-title {
    font-family: var(--font-h);
    font-size: .82rem;
    font-weight: 700;
    color: var(--gray-700);
    margin: 1.1rem 0 .45rem;
}

.legal-mini-title:first-of-type {
    margin-top: .5rem;
}

.legal-text--lead {
    margin-top: 0;
}

.legal-list {
    margin: 0;
    display: grid;
    gap: .85rem;
}

.legal-list > div {
    display: grid;
    gap: .2rem;
}

.legal-list dt {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.legal-list dd {
    margin: 0;
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.55;
}

.legal-list a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-text {
    margin: 1.25rem 0 0;
    font-size: .92rem;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.75;
}

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

.legal-text code {
    font-size: .85em;
    background: var(--gray-100);
    padding: .1em .35em;
    border-radius: 4px;
}

.legal-copy {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--gray-200);
    font-size: .82rem;
    color: var(--gray-500);
}

.legal-doc {
    max-width: 860px;
    margin: 0 auto;
}

.legal-doc-meta {
    margin: 0 0 1.5rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-500);
}

.legal-doc-section h2 {
    font-family: var(--font-h);
    font-size: .95rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.01em;
    margin: 2rem 0 .85rem;
}

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

.legal-doc-list {
    margin: .75rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: .55rem;
}

.legal-doc-list li {
    font-size: .92rem;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.65;
}

.legal-doc-list a {
    color: var(--primary);
}

.legal-doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1rem;
    margin-top: 1rem;
    font-size: .88rem;
    font-weight: 600;
}

.legal-doc-links a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
}

.legal-cookie-table th,
.legal-cookie-table td {
    border: 1px solid #e5e7eb;
    padding: .65rem .75rem;
    text-align: left;
    vertical-align: top;
}

.legal-cookie-table th {
    background: #f8fafc;
    font-weight: 600;
}


/* ── ACTUALITÉS (placeholder) ── */
.page-hero--actu {
    height: 42vh;
    max-height: 420px;
}

.actu-placeholder {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.actu-placeholder-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.actu-placeholder-inner .section-label {
    justify-content: center;
}

.actu-placeholder-inner .about-text {
    margin-left: auto;
    margin-right: auto;
}

.actu-placeholder-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
    margin-top: 1.75rem;
}
