:root {
    --black: #1f1f1f;
    --black-soft: #282828;
    --white: #ffffff;
    --off-white: #f7f4ef;
    --cream: #cfb07b;
    --cream-dark: #b98c57;
    --text: #171717;
    --muted: #6b6b6b;
    --border: #e8e2d9;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

p,
h1,
h2,
h3,
h4,
blockquote {
    margin-top: 0;
}

.site-container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

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

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 78px;
    background: var(--black);
    color: var(--white);
}

.header-inner {
    width: min(calc(100% - 48px), var(--container));
    height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 800;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.site-logo {
    font-size: 16px;
}

.site-logo-accent,
.footer-logo strong {
    color: var(--cream);
}

.main-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    position: relative;
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 600;
    transition: color .2s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: var(--cream);
    transition: right .2s ease;
}

.main-navigation a:hover {
    color: var(--white);
}

.main-navigation a:hover::after {
    right: 0;
}

.header-quote-button,
.mobile-quote-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    background: var(--cream);
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.mobile-quote-link {
    display: none;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: transform .2s ease, opacity .2s ease;
}

/* HERO */
.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #161616;
    color: var(--white);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-securite-solutions.jpg');
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16,16,16,.83) 0%, rgba(16,16,16,.66) 43%, rgba(16,16,16,.27) 100%),
        linear-gradient(0deg, rgba(13,13,13,.48) 0%, rgba(13,13,13,.03) 62%);
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 720px;
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
    padding: 154px 0 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    max-width: 790px;
}

.section-eyebrow {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream-dark);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: '•';
    width: auto;
    height: auto;
    background: none;
    color: currentColor;
    font-size: 12px;
    line-height: 1;
    flex: 0 0 auto;
}

.section-eyebrow-light {
    color: var(--cream);
}

.hero h1, .hero .home-hero-title {
    max-width: 780px;
    margin: 0;
    font-size: clamp(48px, 5.1vw, 76px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

.hero-description {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: var(--cream);
    color: var(--black);
}

.button-outline-light {
    border-color: rgba(255,255,255,.45);
    color: var(--white);
}

.button-outline-light:hover {
    border-color: var(--white);
}

.hero-phone {
    min-height: 48px;
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(22,22,22,.68);
    border: 1px solid rgba(255,255,255,.13);
}

.hero-phone-label {
    margin-bottom: 2px;
    color: rgba(255,255,255,.55);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hero-phone strong {
    font-size: 13px;
    font-weight: 700;
}

.hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.24);
    padding-top: 24px;
}

.hero-stat {
    min-height: 75px;
    padding: 0 28px;
    border-left: 1px solid rgba(255,255,255,.22);
}

.hero-stat:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--cream);
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
}

.hero-stat span {
    color: rgba(255,255,255,.82);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* TRUST */
.trust-strip {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.trust-strip-grid {
    min-height: 96px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip-grid > div {
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.trust-strip-grid > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.trust-strip strong {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 800;
}

.trust-strip span {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
}

/* GENERIC SECTIONS */
.section {
    padding: 104px 0;
}

.section h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 800;
}

.section-heading {
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: end;
}

.section-heading-wide .section-copy {
    max-width: 470px;
}

.section-copy {
    margin: 0;
    max-width: 420px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* SERVICES */
.section-services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    min-height: 310px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    transition: transform .25s ease, background .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #272727;
}

.service-number {
    color: #4a4a4a;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -.06em;
}

.service-card h3 {
    margin: 0 0 12px;
    color: var(--cream);
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.service-card p {
    margin: 0 0 26px;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    line-height: 1.7;
}

.card-link,
.inline-link {
    color: var(--cream-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.service-card .card-link {
    color: rgba(255,255,255,.58);
}

/* SECTORS */
.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-heading-light .section-copy {
    color: rgba(255,255,255,.62);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 1px solid rgba(255,255,255,.16);
}

.sector-card {
    min-height: 240px;
    padding: 26px;
    border-right: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.sector-index {
    display: block;
    margin-bottom: 58px;
    color: var(--cream);
    font-size: 10px;
    font-weight: 800;
}

.sector-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.2;
}

.sector-card p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.65;
}

/* ABOUT */
.section-about {
    background: var(--off-white);
}

.split-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: center;
}

.about-visual {
    position: relative;
    min-height: 560px;
}

.about-visual-card-main {
    position: absolute;
    inset: 0 72px 70px 0;
    background:
        linear-gradient(rgba(20,20,20,.22), rgba(20,20,20,.22)),
        url('/assets/images/hero-securite-solutions.jpg') center / cover no-repeat;
    filter: grayscale(.08);
}

.about-visual-card-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 245px;
    min-height: 180px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: var(--black);
    color: var(--white);
}

.about-visual-card-small strong {
    margin-bottom: 10px;
    color: var(--cream);
    font-size: 42px;
    line-height: 1;
}

.about-visual-card-small span {
    font-size: 11px;
    line-height: 1.6;
}

.about-content h2 {
    font-size: clamp(34px, 3.7vw, 52px);
}

.about-content > p:not(.section-eyebrow) {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.about-points {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d9d2c8;
}

.about-points > div {
    padding: 18px 14px 0 0;
}

.about-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--cream-dark);
    font-size: 11px;
}

.about-points span {
    font-size: 11px;
    font-weight: 700;
}

/* LOCATIONS */
.locations-intro {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: end;
}

.locations-intro p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.locations-panel {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 520px;
    background: var(--black);
    color: var(--white);
}

.locations-map {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #252525;
}

.map-outline {
    font-size: clamp(180px, 25vw, 340px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.12em;
    color: rgba(255,255,255,.035);
}

.map-dot,
.map-ring {
    position: absolute;
    left: 43%;
    top: 68%;
    border-radius: 50%;
}

.map-dot {
    width: 12px;
    height: 12px;
    background: var(--cream);
    box-shadow: 0 0 0 8px rgba(207,176,123,.12);
}

.map-ring {
    border: 1px solid rgba(207,176,123,.27);
    transform: translate(-50%, -50%);
}

.map-ring-one {
    width: 160px;
    height: 160px;
}

.map-ring-two {
    width: 320px;
    height: 320px;
}

.locations-list {
    padding: 62px 54px;
}

.locations-kicker,
.project-category,
.news-meta {
    margin: 0 0 10px;
    color: var(--cream);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.locations-list h3 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.1;
}

.locations-list > p:not(.locations-kicker) {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    line-height: 1.8;
}

.location-tags {
    margin: 28px 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-tags span {
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.74);
    font-size: 9px;
    font-weight: 700;
}

.locations-list .inline-link {
    color: var(--cream);
}

/* PROJECTS */
.section-projects {
    background: var(--off-white);
}

.projects-grid,
.testimonials-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.project-card {
    background: var(--white);
}

.project-card-media {
    height: 270px;
    background:
        linear-gradient(rgba(22,22,22,.12), rgba(22,22,22,.12)),
        url('/assets/images/hero-securite-solutions.jpg') center / cover no-repeat;
}

.project-media-two {
    background-position: 70% center;
    filter: grayscale(.18);
}

.project-media-three {
    background-position: 35% center;
    filter: contrast(.92);
}

.project-card-body {
    padding: 26px;
}

.project-card h3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.25;
}

.project-card-body > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

/* TESTIMONIALS */
.section-testimonials {
    background: var(--white);
}

.testimonial-card {
    margin: 0;
    min-height: 290px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.stars {
    margin-bottom: 42px;
    color: var(--cream-dark);
    font-size: 12px;
    letter-spacing: .15em;
}

.testimonial-card > p {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 600;
}

.testimonial-card footer {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card footer strong {
    font-size: 11px;
}

.testimonial-card footer span {
    color: var(--muted);
    font-size: 9px;
}

/* EXPERTISE */
.section-expertise {
    background: var(--black);
    color: var(--white);
}

.split-layout-reverse {
    grid-template-columns: .95fr 1.05fr;
}

.expertise-content h2 {
    font-size: clamp(34px, 4vw, 56px);
}

.expertise-content > p:not(.section-eyebrow) {
    max-width: 650px;
    margin: 26px 0;
    color: rgba(255,255,255,.66);
    font-size: 13px;
    line-height: 1.85;
}

.expertise-number {
    display: grid;
    place-items: center;
    min-height: 440px;
    border: 1px solid rgba(255,255,255,.12);
    color: var(--cream);
    font-size: clamp(100px, 14vw, 190px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.08em;
}

/* FAQ */
.section-faq {
    background: var(--off-white);
}

.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
}

.faq-heading h2 {
    font-size: clamp(34px, 3.7vw, 50px);
}

.faq-heading > p:not(.section-eyebrow) {
    margin: 22px 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.faq-item {
    border-top: 1px solid #d8d2c8;
}

.faq-item:last-child {
    border-bottom: 1px solid #d8d2c8;
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.faq-icon {
    flex: 0 0 auto;
    color: var(--cream-dark);
    font-size: 22px;
    font-weight: 400;
    transition: transform .2s ease;
}

.faq-answer {
    display: none;
    padding: 0 52px 22px 0;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

/* NEWS */
.section-news {
    background: var(--white);
}

.news-card {
    min-height: 250px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.news-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.3;
}

.news-card > p:not(.news-meta) {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}

.news-card .card-link {
    margin-top: auto;
}

/* CTA */
.final-cta {
    padding: 82px 0;
    background: #151515;
    color: var(--white);
}

.final-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 70px;
}

.final-cta h2 {
    max-width: 770px;
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.final-cta-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
}

/* FOOTER */
.site-footer {
    background: #191919;
    color: var(--white);
}

.footer-container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.footer-main {
    padding: 72px 0 62px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    margin-bottom: 22px;
    font-size: 18px;
}

.footer-intro,
.footer-address,
.footer-hours {
    max-width: 300px;
    margin: 0 0 14px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    line-height: 1.75;
    font-style: normal;
}

.footer-contact-link {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--cream);
    font-size: 15px;
    font-weight: 800;
}

.footer-title {
    margin: 0 0 20px;
    color: var(--cream);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column a,
.footer-column span {
    color: rgba(255,255,255,.61);
    font-size: 10px;
    line-height: 1.45;
}

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

.footer-column span {
    cursor: default;
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,.09);
}

.footer-legal-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-legal p {
    margin: 0;
    color: rgba(255,255,255,.37);
    font-size: 8px;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    :root {
        --container: 960px;
    }

    .main-navigation {
        gap: 22px;
    }

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

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

    .split-layout,
    .faq-layout {
        gap: 55px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 860px) {
    .site-header,
    .header-inner {
        height: 72px;
    }

    .header-quote-button {
        margin-left: auto;
    }

    .mobile-menu-button {
        display: block;
        margin-left: 4px;
    }

    .main-navigation {
        position: fixed;
        inset: 72px 0 0;
        padding: 42px 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--black);
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        font-size: 14px;
    }

    .main-navigation a::after {
        display: none;
    }

    .mobile-quote-link {
        display: flex !important;
        margin-top: 28px;
        border-bottom: 0 !important;
        color: var(--black) !important;
    }

    .hero,
    .hero-container {
        min-height: 680px;
    }

    .hero-container {
        padding-top: 116px;
    }

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

    .hero-stat:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }

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

    .trust-strip-grid > div:nth-child(3) {
        border-left: 0;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading,
    .locations-intro,
    .final-cta-inner {
        align-items: start;
        flex-direction: column;
        display: flex;
    }

    .section-heading .section-copy,
    .locations-intro > p {
        max-width: 650px;
    }

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

    .split-layout,
    .split-layout-reverse,
    .faq-layout,
    .locations-panel {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 500px;
    }

    .locations-map {
        min-height: 390px;
    }

    .expertise-number {
        min-height: 280px;
    }

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

    .footer-column:last-child {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .site-container,
    .header-inner,
    .footer-container,
    .hero-container {
        width: calc(100% - 32px);
    }

    .header-quote-button {
        display: none;
    }

    .site-logo {
        font-size: 14px;
    }

    .hero,
    .hero-container {
        min-height: calc(100svh - 72px);
    }

    .hero-background {
        background-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(15,15,15,.84), rgba(15,15,15,.62));
    }

    .hero-container {
        padding-top: 78px;
        padding-bottom: 28px;
    }

    .hero h1, .hero .home-hero-title {
        font-size: clamp(39px, 12vw, 56px);
    }

    .hero-description {
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.65;
    }

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

    .button,
    .hero-phone {
        width: 100%;
    }

    .hero-stats {
        margin-top: 42px;
    }

    .hero-stat,
    .hero-stat:nth-child(3) {
        padding: 0 12px;
        border-left: 1px solid rgba(255,255,255,.18);
    }

    .hero-stat:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .hero-stat strong {
        font-size: 27px;
    }

    .trust-strip-grid,
    .services-grid,
    .sectors-grid,
    .projects-grid,
    .testimonials-grid,
    .news-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-grid > div,
    .trust-strip-grid > div:nth-child(3) {
        min-height: 76px;
        padding: 16px 0;
        border-left: 0;
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 62px 0;
    }

    .section h2,
    .about-content h2,
    .faq-heading h2,
    .expertise-content h2 {
        font-size: clamp(31px, 9vw, 42px);
    }

    .section-heading {
        margin-bottom: 32px;
        gap: 20px;
    }

    .service-card {
        min-height: 260px;
    }

    .sector-card {
        min-height: 200px;
    }

    .sector-index {
        margin-bottom: 38px;
    }

    .about-visual {
        min-height: 410px;
    }

    .about-visual-card-main {
        inset: 0 30px 60px 0;
    }

    .about-visual-card-small {
        width: 210px;
        min-height: 150px;
        padding: 24px;
    }

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

    .locations-map {
        min-height: 320px;
    }

    .locations-list {
        padding: 36px 24px;
    }

    .project-card-media {
        height: 230px;
    }

    .faq-layout {
        gap: 42px;
    }

    .final-cta {
        padding: 62px 0;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-main {
        padding: 52px 0;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-legal-inner {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================================
 * CONVERSION / DEMANDE DE DEVIS
 * ========================================================= */

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

.button-dark:hover {
    background: #111111;
}

.conversion-strip {
    padding: 0 0 72px;
    background: var(--white);
}

.conversion-strip-inner {
    min-height: 132px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--off-white);
    border: 1px solid var(--border);
}

.conversion-strip-kicker {
    margin: 0 0 7px;
    color: var(--cream-dark);
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.conversion-strip-text {
    max-width: 720px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
}

.conversion-card-section {
    padding: 0 0 88px;
    background: var(--white);
}

.conversion-card {
    padding: 42px 46px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(250px, .5fr);
    align-items: center;
    gap: 56px;
    background: var(--off-white);
    border: 1px solid var(--border);
}

.conversion-card-copy h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.conversion-card-copy > p:last-child {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.conversion-card-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

.conversion-card-actions .button {
    width: 100%;
}

.conversion-phone {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border);
    background: var(--white);
    text-align: center;
    transition: border-color .2s ease, transform .2s ease;
}

.conversion-phone:hover {
    transform: translateY(-2px);
    border-color: var(--cream);
}

.conversion-phone span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.conversion-phone strong {
    font-size: 14px;
    font-weight: 800;
}

/* Page devis */
.quote-page {
    min-height: 100vh;
    padding: 138px 0 90px;
    background: var(--off-white);
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 72px;
    align-items: start;
}

.quote-intro {
    position: sticky;
    top: 118px;
}

.quote-intro h1 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(48px, 5.1vw, 76px);
    line-height: 1;
    letter-spacing: -.05em;
}

.quote-intro > p:not(.section-eyebrow) {
    max-width: 560px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.quote-contact {
    margin-top: 34px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.quote-contact span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.quote-contact a {
    font-size: 19px;
    font-weight: 800;
}

.quote-form-card {
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--border);
}

.quote-form-card h2 {
    margin: 0 0 9px;
    font-size: 24px;
    line-height: 1.2;
}

.quote-form-intro {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input {
    min-height: 50px;
    padding: 0 14px;
}

.form-field textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--cream);
    box-shadow: 0 0 0 3px rgba(207, 176, 123, .13);
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.quote-form-footer {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.quote-privacy-note {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.form-alert {
    margin: 0 0 24px;
    padding: 14px 16px;
    border: 1px solid #d7c6a8;
    background: #fbf7ef;
    font-size: 12px;
    line-height: 1.6;
}

.form-alert-success {
    border-color: #b9d5bf;
    background: #f1f8f2;
}

.form-alert-error {
    border-color: #e2b5b5;
    background: #fbf0f0;
}

@media (max-width: 900px) {
    .conversion-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .conversion-card-actions {
        max-width: 340px;
    }

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

    .quote-intro {
        position: static;
    }
}

@media (max-width: 680px) {
    .conversion-strip {
        padding-bottom: 54px;
    }

    .conversion-strip-inner {
        padding: 24px 22px;
        display: block;
    }

    .conversion-strip-inner .button {
        width: 100%;
        margin-top: 20px;
    }

    .conversion-card-section {
        padding-bottom: 64px;
    }

    .conversion-card {
        padding: 30px 22px;
    }

    .conversion-card-actions {
        max-width: none;
    }

    .quote-page {
        padding: 112px 0 62px;
    }

    .quote-form-card {
        padding: 26px 20px;
    }

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

    .form-field-full {
        grid-column: auto;
    }

    .quote-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-form-footer .button {
        width: 100%;
    }
}

/* =========================================================
   HOME - alignement éditorial et visuel sur le site modèle
   ========================================================= */
.model-narrow { max-width: 1090px; }
.model-heading { max-width: 600px; margin-bottom: 30px; }
.model-heading h2 { margin: 0 0 10px; font-size: clamp(2rem, 3vw, 2.65rem); line-height: 1.05; }
.model-heading > p:last-child { margin: 0; line-height: 1.55; }
.model-heading-wide { max-width: none; }
.button-hero-phone { background: rgba(20,20,20,.72); color: #fff; border: 1px solid rgba(255,255,255,.18); }

.model-partner-section { background: #fff; }
.model-partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; max-width: 1080px; }
.model-partner-visual { min-height: 510px; border-radius: 18px 0 0 0; position: relative; overflow: hidden; background: linear-gradient(rgba(20,20,20,.35), rgba(30,20,10,.42)), url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat; }
.model-partner-caption { position: absolute; left: 14px; right: 14px; bottom: 28px; color: #fff; display: grid; gap: 18px; }
.model-partner-caption strong { font-size: clamp(2rem, 3vw, 2.7rem); line-height: .95; }
.model-partner-caption span { font-size: .78rem; }
.model-partner-copy h2 { margin: 0 0 18px; font-size: clamp(2rem, 3vw, 2.65rem); line-height: 1.03; }
.model-partner-copy > p { line-height: 1.45; margin: 0 0 16px; }
.model-values { margin-top: 24px; display: grid; gap: 16px; }
.model-values p { margin: 0; padding-left: 12px; position: relative; }
.model-values p::before { content: '•'; position: absolute; left: 0; color: #cfb07b; }
.model-values strong, .model-values span { display: block; }
.model-values strong { color: #745b3c; }
.model-values span { margin-top: 2px; color: #796f68; }

.model-zones { min-height: 510px; position: relative; display: flex; align-items: center; color: #fff; overflow: hidden; }
.model-zones-background { position: absolute; inset: 0; background: linear-gradient(rgba(19,20,20,.89), rgba(19,20,20,.91)), url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat; }
.model-zones-inner { position: relative; z-index: 1; max-width: 1050px; }
.model-zones h2 { margin: 4px 0 8px; color: #fff; font-size: clamp(2rem, 3vw, 2.6rem); }
.model-zones-inner > p:not(.section-eyebrow) { margin: 0 0 30px; }
.model-city-tags { display: flex; flex-wrap: wrap; gap: 10px; max-width: 980px; }
.model-city-tags span { border: 1px solid rgba(255,255,255,.9); border-radius: 4px; padding: 12px 18px; min-width: 65px; text-align: center; }

.model-expertise-section { background: #fff; }
.model-expertise-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: start; }
.model-expertise-image { min-height: 245px; background: linear-gradient(rgba(20,20,20,.06), rgba(20,20,20,.06)), url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat; }
.model-expertise-copy p { margin: 0 0 16px; line-height: 1.48; }

.model-final-cta { background: #cfb07b; padding: 48px 0; }
.model-final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; max-width: 1030px; }
.model-final-cta h2 { margin: 0 0 6px; font-size: clamp(1.85rem, 2.35vw, 2.3rem); line-height: 1.02; letter-spacing: -.035em; text-wrap: balance; }
.model-final-cta p { margin: 0; }
.model-final-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.button-phone-outline { background: transparent; color: #1f1f1f; border: 1px solid #1f1f1f; }

.model-footer { background: #202020; color: #918a84; padding: 54px 0 70px; }
.model-footer-grid { display: grid; grid-template-columns: 2.1fr 1fr 1fr 1.15fr; gap: 70px; max-width: 1030px; }
.model-footer-logo { display: inline-block; color: #fff; font-size: 1.65rem; font-weight: 800; margin-bottom: 18px; }
.model-footer-logo strong { color: #fff; }
.model-footer-brand address { font-style: normal; line-height: 1.5; margin-bottom: 30px; }
.model-footer-brand > p { margin: 0 0 28px; }
.model-footer-phone { color: #d9b873; font-size: 1.2rem; font-weight: 800; }
.model-cnaps { margin-top: 46px !important; line-height: 1.5; font-size: .9rem; }
.model-footer-column { display: flex; flex-direction: column; gap: 8px; }
.model-footer-column .footer-title { color: #fff; text-transform: uppercase; font-weight: 800; margin: 2px 0 25px; }
.model-footer-column a, .model-footer-column span { color: #918a84; }
.model-footer-credit { margin-top: 18px; line-height: 1.5; }
.model-footer-credit strong { color: #d8b74f; }

@media (max-width: 900px) {
    .model-partner-grid, .model-expertise-grid { grid-template-columns: 1fr; }
    .model-partner-visual { min-height: 430px; }
    .model-footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
    .model-final-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .model-partner-visual { min-height: 360px; }
    .model-city-tags { gap: 8px; }
    .model-city-tags span { flex: 1 1 calc(50% - 8px); padding: 11px 8px; }
    .model-footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .model-footer-column .footer-title { margin-bottom: 12px; }
    .model-cnaps { margin-top: 30px !important; }
    .model-final-actions { width: 100%; }
    .model-final-actions .button { flex: 1 1 100%; text-align: center; }
}

/* =========================================================
   SERVICE - gabarit premium calé sur le modèle WordPress
   ========================================================= */
.service-page-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
    background: #181818;
}
.service-page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero-securite-solutions.jpg') center 46%/cover no-repeat;
    transform: scale(1.015);
}
.service-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22,22,22,.92) 0%, rgba(22,22,22,.78) 46%, rgba(22,22,22,.38) 100%);
}
.service-page-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 58px;
    padding-bottom: 58px;
}
.service-page-hero-copy { max-width: 680px; }
.service-page-hero-eyebrow { margin-bottom: 18px; }
.service-page-hero h1 {
    margin: 0 0 20px;
    max-width: 690px;
    font-size: clamp(48px, 5.1vw, 76px);
    line-height: .92;
    letter-spacing: -.055em;
    font-weight: 800;
    text-wrap: balance;
}
.service-page-hero-description {
    max-width: 650px;
    margin: 0 0 32px;
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 600;
}
.service-page-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.service-page-phone {
    background: rgba(20,20,20,.68);
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
}
.service-page-section { padding: 92px 0; }
.service-split {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 70px;
    align-items: center;
}
.service-split-image-first { grid-template-columns: .92fr 1.08fr; }
.service-rich-copy h2,
.service-section-heading h2,
.service-quote-copy h2,
.service-zones-inner h2 {
    margin: 0 0 24px;
    font-size: clamp(2.1rem, 3.15vw, 3.05rem);
    line-height: 1.04;
    letter-spacing: -.04em;
    font-weight: 800;
    text-wrap: balance;
}
.service-rich-copy p:not(.section-eyebrow) {
    margin: 0 0 17px;
    font-size: .98rem;
    line-height: 1.7;
}
.service-photo {
    min-height: 500px;
    border-radius: 20px 0 20px 0;
    background: linear-gradient(rgba(24,24,24,.14), rgba(24,24,24,.14)), url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat;
    box-shadow: 0 24px 60px rgba(20,20,20,.12);
}
.service-photo-engagement { min-height: 535px; background-position: 64% center; }
.service-benefits-section { background: #f5f2ed; }
.service-section-heading { max-width: 880px; margin-bottom: 44px; }
.service-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.service-benefit-card {
    min-height: 270px;
    padding: 28px 28px 30px;
    background: #202020;
    color: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}
.service-benefit-card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(31,31,31,.14); }
.service-card-index {
    display: block;
    margin-bottom: 38px;
    color: rgba(255,255,255,.17);
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 800;
}
.service-benefit-card h3 { margin: 0 0 13px; color: #d4ad71; font-size: 1.08rem; }
.service-benefit-card p { margin: 0; font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.9); }
.service-inline-cta {
    margin-top: 28px;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: #d3b47d;
    border-radius: 8px;
}
.service-inline-cta p { margin: 0; font-weight: 700; }
.service-method-section { background: #202020; color: #fff; }
.service-section-heading-light h2 { color: #fff; }
.service-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.18);
}
.service-method-step {
    min-height: 220px;
    padding: 28px 24px 18px 0;
    border-right: 1px solid rgba(255,255,255,.18);
}
.service-method-step + .service-method-step { padding-left: 24px; }
.service-method-step:last-child { border-right: 0; }
.service-method-number {
    display: block;
    margin-bottom: 34px;
    color: #d3b47d;
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 800;
}
.service-method-step h3 { margin: 0 0 9px; font-size: 1rem; color: #fff; }
.service-method-step p { margin: 0; line-height: 1.55; color: rgba(255,255,255,.72); font-size: .86rem; }
.service-faq-section { background: #fff; }
.service-faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.service-faq-list { border-top: 1px solid #ddd5ca; }
.service-faq-list .faq-item { border-bottom: 1px solid #ddd5ca; }
.service-faq-list .faq-button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
}
.service-faq-list .faq-button:disabled { cursor: default; opacity: 1; }
.service-faq-list .faq-icon { font-size: 1.35rem; color: #b98c57; transition: transform .2s ease; }
.service-faq-list .faq-answer { display: none; padding: 0 48px 22px 0; color: #655e58; line-height: 1.65; }
.service-faq-list .faq-item.is-open .faq-answer { display: block; }
.service-faq-list .faq-item.is-open .faq-icon { transform: rotate(45deg); }
.service-engagement-section { background: #f7f4ef; }
.service-zones-section {
    position: relative;
    min-height: 465px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}
.service-zones-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(24,24,24,.91), rgba(24,24,24,.93)), url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat;
}
.service-zones-inner { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.service-zones-inner h2 { color: #fff; margin-bottom: 10px; }
.service-zones-description { margin: 0 0 30px; color: rgba(255,255,255,.88); }
.service-zone-tags { display: flex; flex-wrap: wrap; gap: 10px; max-width: 1000px; }
.service-zone-tags span {
    min-width: 74px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 4px;
    text-align: center;
    font-size: .86rem;
}
.service-quote-section { background: #d3b47d; }
.service-quote-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.service-quote-copy { padding-top: 12px; }
.service-quote-copy > p:not(.section-eyebrow) { line-height: 1.65; }
.service-quote-benefits { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 12px; }
.service-quote-benefits li { position: relative; padding-left: 24px; font-weight: 700; }
.service-quote-benefits li::before { content: '✓'; position: absolute; left: 0; top: 0; }
.service-quote-phone { display: inline-block; margin-top: 12px; font-size: 1.45rem; font-weight: 800; }
.service-quote-form { background: #fff; padding: 32px; border-radius: 10px; box-shadow: 0 24px 60px rgba(50,40,25,.12); }
.service-quote-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-quote-fields label { display: grid; gap: 8px; font-size: .75rem; font-weight: 700; }
.service-quote-fields input,
.service-quote-fields textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #ded8cf;
    border-radius: 4px;
    background: #fff;
    outline: 0;
}
.service-quote-fields input:focus,
.service-quote-fields textarea:focus { border-color: #b98c57; box-shadow: 0 0 0 3px rgba(185,140,87,.12); }
.service-quote-fields textarea { min-height: 120px; resize: vertical; }
.service-quote-field-full { grid-column: 1 / -1; }
.service-consent { margin: 18px 0; display: flex; align-items: flex-start; gap: 10px; font-size: .7rem; line-height: 1.45; color: #68615b; }
.service-consent input { margin-top: 2px; }
.service-quote-submit { width: 100%; }
.service-other-section { background: #fff; }
.service-other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-other-card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid #e2ddd5;
    background: #fff;
    position: relative;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-other-card:hover { transform: translateY(-3px); border-color: #d3b47d; box-shadow: 0 15px 35px rgba(20,20,20,.07); }
.service-other-number { display: block; margin-bottom: 28px; font-size: 2rem; font-weight: 800; color: #d3b47d; }
.service-other-card h3 { max-width: 86%; margin: 0; font-size: 1.15rem; line-height: 1.2; }
.service-other-card p { margin: 10px 0 0; font-size: .82rem; color: #756e68; }
.service-other-arrow { position: absolute; right: 22px; bottom: 22px; font-size: 1.4rem; }
.service-other-card-all { background: #202020; color: #fff; border-color: #202020; }
.service-bottom-cta { margin-top: 0; }
.service-page-hero-simple { min-height: 560px; }

@media (max-width: 980px) {
    .service-split,
    .service-split-image-first,
    .service-faq-layout,
    .service-quote-layout { grid-template-columns: 1fr; gap: 44px; }
    .service-benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .service-method-grid { grid-template-columns: repeat(2, 1fr); }
    .service-method-step:nth-child(2) { border-right: 0; }
    .service-method-step:nth-child(3), .service-method-step:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
    .service-other-grid { grid-template-columns: repeat(2, 1fr); }
    .service-photo { min-height: 420px; }
}

@media (max-width: 640px) {
    .service-page-hero,
    .service-page-hero-inner { min-height: 560px; }
    .service-page-hero-inner { padding-top: 70px; padding-bottom: 44px; }
    .service-page-hero h1 { font-size: clamp(39px, 12vw, 56px); }
    .service-page-hero-description { font-size: .94rem; line-height: 1.55; }
    .service-page-actions { width: 100%; }
    .service-page-actions .button { width: 100%; text-align: center; }
    .service-page-section { padding: 64px 0; }
    .service-rich-copy h2,
    .service-section-heading h2,
    .service-quote-copy h2,
    .service-zones-inner h2 { font-size: 2rem; line-height: 1.06; }
    .service-benefit-grid,
    .service-method-grid,
    .service-other-grid,
    .service-quote-fields { grid-template-columns: 1fr; }
    .service-method-step,
    .service-method-step + .service-method-step { padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
    .service-method-step:last-child { border-bottom: 0; }
    .service-inline-cta { align-items: stretch; flex-direction: column; }
    .service-inline-cta .button { width: 100%; text-align: center; }
    .service-photo { min-height: 330px; }
    .service-zone-tags span { flex: 1 1 calc(50% - 8px); padding: 11px 8px; }
    .service-quote-form { padding: 24px 18px; }
    .service-quote-field-full { grid-column: auto; }
}

/* =========================================================
   SERVICE - corps de texte compact (13 px)
   ========================================================= */
.service-page-hero-description,
.service-rich-copy p:not(.section-eyebrow),
.service-benefit-card p,
.service-method-step p,
.service-faq-list .faq-answer,
.service-zones-description,
.service-zone-tags span,
.service-quote-copy > p:not(.section-eyebrow),
.service-quote-benefits li,
.service-other-card p {
    font-size: 13px;
}

@media (max-width: 720px) {
    .service-page-hero-description,
    .service-rich-copy p:not(.section-eyebrow),
    .service-benefit-card p,
    .service-method-step p,
    .service-faq-list .faq-answer,
    .service-zones-description,
    .service-zone-tags span,
    .service-quote-copy > p:not(.section-eyebrow),
    .service-quote-benefits li,
    .service-other-card p {
        font-size: 13px;
    }
}

/* =========================================================
   HEADER - MENU SERVICES DYNAMIQUE
   ========================================================= */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.86);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s ease;
}

.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 1px;
    background: var(--cream);
    transition: right .2s ease;
}

.nav-dropdown-toggle svg {
    width: 10px;
    height: 7px;
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle.is-active,
.nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--white);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
    right: 0;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg,
.nav-dropdown.is-open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    width: 280px;
    padding: 10px;
    background: #171717;
    border: 1px solid rgba(207,176,123,.22);
    box-shadow: 0 24px 55px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.main-navigation .nav-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    color: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
}

.main-navigation .nav-dropdown-menu a:last-child {
    border-bottom: 0;
}

.main-navigation .nav-dropdown-menu a::after {
    display: none;
}

.main-navigation .nav-dropdown-menu a:hover,
.main-navigation .nav-dropdown-menu a:focus-visible,
.main-navigation .nav-dropdown-menu a[aria-current="page"] {
    padding-left: 16px;
    background: rgba(207,176,123,.1);
    color: var(--cream);
}

@media (max-width: 860px) {
    .nav-dropdown {
        display: block;
        align-self: auto;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .nav-dropdown-toggle {
        width: 100%;
        height: auto;
        min-height: 55px;
        justify-content: space-between;
        padding: 18px 0;
        color: rgba(255,255,255,.86);
        font-size: 14px;
        text-align: left;
    }

    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        transform: none;
        transition: max-height .25s ease;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        max-height: 0;
        transform: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        max-height: 420px;
    }

    .main-navigation .nav-dropdown-menu a {
        min-height: 0;
        padding: 12px 16px;
        border-bottom: 0;
        color: rgba(255,255,255,.68);
        font-size: 12px;
    }

    .main-navigation .nav-dropdown-menu a:hover,
    .main-navigation .nav-dropdown-menu a:focus-visible,
    .main-navigation .nav-dropdown-menu a[aria-current="page"] {
        padding-left: 20px;
    }
}

/* =========================================================
   IMPLANTATIONS - layout unique
   ========================================================= */
.location-page {
    width: 100%;
    overflow-x: clip;
}

.location-page .location-shell {
    box-sizing: border-box;
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.location-hero {
    background: linear-gradient(rgba(24,24,24,.72),rgba(24,24,24,.78)), url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat;
    color: #fff;
    padding: 110px 0 105px;
}
.location-hero-inner > * { max-width: 850px; }
.location-hero h1 { margin: 10px 0 18px; font-size: clamp(48px, 5.1vw, 76px); line-height: 1.02; letter-spacing: -.035em; }
.location-hero-copy { max-width: 760px; font-size: 13px; line-height: 1.7; }
.location-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.location-intro { padding: 88px 0; }
.location-intro-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 62px; align-items: center; }
.location-photo { min-height: 430px; border-radius: 2px; background: linear-gradient(rgba(24,24,24,.18),rgba(24,24,24,.34)),url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat; }
.location-intro-content h2,.location-services h2 { font-size: clamp(32px,4vw,50px); line-height: 1.06; letter-spacing: -.035em; margin: 10px 0 24px; text-wrap: balance; }
.location-intro-content p { font-size: 13px; line-height: 1.72; margin: 0 0 15px; }
.location-address { margin-top: 25px!important; }
.location-services { padding: 82px 0; }
.location-services-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.location-service-card { min-height: 112px; background: #202020; color: #fff; padding: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; text-decoration: none; font-size: 14px; font-weight: 700; transition: transform .2s ease,background .2s ease; }
.location-service-card:hover { transform: translateY(-3px); background: #2b2b2b; }
.location-service-card span:last-child { color: #cfb07b; font-size: 20px; }
.site-cta-band { background: #cfb07b; padding: 54px 0; }
.site-cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.site-cta-band h2 { font-size: clamp(28px,3.3vw,44px); line-height: 1.02; margin: 0 0 7px; letter-spacing: -.03em; }
.site-cta-band p { font-size: 13px; margin: 0; }
.site-cta-band-actions { display: flex; gap: 10px; flex-shrink: 0; }
.button-outline-dark { border: 1px solid #202020; color: #202020; background: transparent; }
.button-outline-light { border: 1px solid rgba(255,255,255,.75); color: #fff; background: transparent; }

@media (max-width: 900px) {
    .location-intro-grid { grid-template-columns: 1fr; gap: 34px; }
    .location-photo { min-height: 340px; }
    .location-services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .site-cta-band-inner { align-items: flex-start; flex-direction: column; }
    .site-cta-band-actions { flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .location-page .location-shell { width: calc(100% - 32px); }
    .location-hero { padding: 72px 0; }
    .location-hero-actions,.site-cta-band-actions { flex-direction: column; width: 100%; }
    .location-hero-actions .button,.site-cta-band-actions .button { width: 100%; text-align: center; }
    .location-intro,.location-services { padding: 58px 0; }
    .location-photo { min-height: 280px; }
    .location-services-grid { grid-template-columns: 1fr; }
    .site-cta-band { padding: 42px 0; }
}

/* H1 - taille harmonisée sur la home */
@media (max-width: 640px) {
    .quote-intro h1,
    .location-hero h1 {
        font-size: clamp(39px, 12vw, 56px);
    }
}


/* =========================================================
   SECTEURS - template commun
   ========================================================= */
.sector-page { overflow-x: clip; }
.sector-hero { position: relative; min-height: 600px; color: #fff; overflow: hidden; }
.sector-hero-bg { position:absolute; inset:0; background:url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat; }
.sector-hero-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(22,22,22,.92) 0%,rgba(22,22,22,.78) 48%,rgba(22,22,22,.4) 100%); }
.sector-hero-inner { position:relative; z-index:2; min-height:600px; display:flex; align-items:center; padding-top:58px; padding-bottom:58px; }
.sector-hero-copy { max-width:780px; }
.sector-hero h1 { max-width:780px; margin:0 0 20px; font-size:clamp(48px,5.1vw,76px); line-height:.98; letter-spacing:-.055em; font-weight:800; text-wrap:balance; }
.sector-hero-copy > p:not(.section-eyebrow) { max-width:700px; margin:0 0 30px; font-size:13px; line-height:1.72; font-weight:500; color:rgba(255,255,255,.9); }
.sector-section { padding:84px 0; }
.sector-section p,.sector-section li { font-size:13px; line-height:1.72; }
.sector-intro { background:#fff; }
.sector-intro-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:72px; align-items:start; }
.sector-intro h2,.sector-heading h2,.sector-rich-copy h2 { margin:8px 0 20px; font-size:clamp(34px,3.5vw,50px); line-height:1.04; letter-spacing:-.04em; text-wrap:balance; }
.sector-intro h3 { margin:0 0 18px; font-size:24px; line-height:1.15; letter-spacing:-.025em; }
.sector-lead { max-width:590px; }
.sector-intro-copy p,.sector-rich-copy p { margin:0 0 15px; }
.sector-engagement { background:#f4f1ed; }
.sector-split { display:grid; grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); gap:66px; align-items:center; }
.sector-photo { min-height:500px; background:linear-gradient(rgba(25,25,25,.18),rgba(25,25,25,.3)),url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat; }
.sector-check-list { list-style:none; padding:0; margin:22px 0; display:grid; gap:11px; }
.sector-check-list li { position:relative; padding-left:22px; font-weight:600; }
.sector-check-list li::before { content:'•'; position:absolute; left:0; color:var(--cream); font-size:20px; line-height:1; top:2px; }
.sector-note { margin-top:24px!important; padding:18px 20px; border-left:3px solid var(--cream); background:#fff; font-style:italic; }
.sector-risks { background:#fff; }
.sector-heading { max-width:850px; margin-bottom:34px; }
.sector-heading > p:not(.section-eyebrow) { max-width:760px; margin:0; }
.sector-risk-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.sector-risk-card { min-height:150px; padding:28px; background:#202020; color:#fff; display:flex; gap:22px; align-items:flex-start; }
.sector-risk-card > span { color:var(--cream); font-size:28px; font-weight:800; }
.sector-risk-card p { margin:2px 0 0; font-weight:600; }
.sector-wide-copy { max-width:920px; margin:26px 0 0; }
.sector-note-wide { max-width:920px; }
.sector-method { background:#202020; color:#fff; }
.sector-heading-light > p:not(.section-eyebrow) { color:rgba(255,255,255,.76); }
.sector-method-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1px; background:rgba(255,255,255,.14); }
.sector-method-card { min-height:250px; padding:28px 24px; background:#202020; }
.sector-method-number { display:block; color:var(--cream); font-size:34px; font-weight:800; margin-bottom:34px; }
.sector-method-card h3 { margin:0 0 12px; font-size:18px; line-height:1.25; }
.sector-method-card p { margin:0; color:rgba(255,255,255,.72); }
.sector-method-after { max-width:920px; margin:28px 0 0; color:rgba(255,255,255,.78); }
.sector-secondary { background:#f4f1ed; }
.sector-secondary-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.sector-secondary-grid article { padding:25px; background:#fff; min-height:180px; }
.sector-secondary-grid article > span { color:var(--cream); font-size:24px; font-weight:800; }
.sector-secondary-grid h3 { margin:22px 0 10px; font-size:17px; line-height:1.25; }
.sector-secondary-grid p { margin:0; }
.sector-faq { background:#fff; }
.sector-faq-layout { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:70px; align-items:start; }
.sector-faq .faq-button[disabled] { opacity:1; cursor:default; }
.sector-faq .faq-button[disabled] .faq-icon { opacity:.35; }
.sector-zones h2 { font-size:clamp(34px,3.5vw,50px); line-height:1.04; letter-spacing:-.04em; }
.sector-other { background:#f4f1ed; }
.sector-other-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.sector-other-card { min-height:100px; padding:22px 24px; background:#202020; color:#fff; display:flex; justify-content:space-between; align-items:flex-end; gap:20px; text-decoration:none; font-size:14px; font-weight:700; transition:transform .2s ease,background .2s ease; }
.sector-other-card:hover { transform:translateY(-3px); background:#292929; }
.sector-other-card strong { color:var(--cream); font-size:22px; }
.sector-other-all { background:var(--cream); color:#202020; }
.sector-other-all strong { color:#202020; }
.sector-generic-copy { max-width:850px; }
.sector-quote { background:#fff; }

@media (max-width:1000px) {
    .sector-intro-grid,.sector-split,.sector-faq-layout { grid-template-columns:1fr; gap:38px; }
    .sector-photo { min-height:380px; }
    .sector-method-grid,.sector-secondary-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .sector-other-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:640px) {
    .sector-hero,.sector-hero-inner { min-height:540px; }
    .sector-hero h1 { font-size:clamp(39px,12vw,56px); }
    .sector-section { padding:58px 0; }
    .sector-risk-grid,.sector-method-grid,.sector-secondary-grid,.sector-other-grid { grid-template-columns:1fr; }
    .sector-photo { min-height:290px; }
    .sector-method-card { min-height:0; }
}


/* =========================================================
   BREADCRUMB + CTA FLOTTANT + QUESTIONNAIRE CONTEXTUEL
   ========================================================= */
.breadcrumb {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 11px;
    color: #777;
}

.breadcrumb a {
    color: #555;
    transition: color .2s ease;
}

.breadcrumb a:hover { color: var(--cream-dark); }
.breadcrumb [aria-current="page"] {
    color: var(--text);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadcrumb-separator { color: #aaa; }

.floating-quote-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 950;
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--black);
    border: 1px solid rgba(31,31,31,.18);
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}
.floating-quote-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0,0,0,.24);
}

.sector-questionnaire {
    margin-bottom: 24px;
    padding: 20px;
    background: #f7f4ef;
    border: 1px solid var(--border);
}
.sector-questionnaire-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 15px;
    font-size: 12px;
}
.sector-questionnaire-current strong {
    color: var(--cream-dark);
    text-align: right;
}
.sector-questionnaire-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.sector-questionnaire-toggle input { accent-color: var(--cream-dark); }
.sector-questionnaire-other {
    display: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.sector-questionnaire-other.is-open { display: block; }
.sector-subject-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.sector-subject-types label {
    position: relative;
    cursor: pointer;
}
.sector-subject-types input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.sector-subject-types span {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8d0c4;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
}
.sector-subject-types input:checked + span {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
}
.sector-subject-target { display: none; }
.sector-subject-target.is-visible { display: block; }
.sector-subject-target label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
}
.sector-subject-target select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #d8d0c4;
    background: #fff;
    color: var(--text);
    font-size: 12px;
}
.recruitment-page { padding: 86px 0 110px; background: #fff; min-height: 55vh; }
.recruitment-page h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(48px, 5.1vw, 76px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

@media (max-width: 640px) {
    .breadcrumb-inner { width: min(calc(100% - 32px), var(--container)); }
    .floating-quote-cta {
        right: 16px;
        bottom: 16px;
        min-height: 44px;
        padding: 0 15px;
        font-size: 10px;
    }
    .sector-questionnaire-current { align-items: flex-start; flex-direction: column; gap: 5px; }
    .sector-questionnaire-current strong { text-align: left; }
    .sector-subject-types { display: grid; grid-template-columns: 1fr; }
    .sector-subject-types span { width: 100%; }
}

/* Questionnaire contextuel - service / secteur */
.context-questionnaire {
    margin-bottom: 24px;
    padding: 22px;
    border: 1px solid var(--border);
    background: #f7f4ef;
}
.context-questionnaire-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
}
.context-questionnaire-heading strong {
    color: var(--cream-dark);
    text-align: right;
}
.context-questionnaire-field {
    display: block;
    margin-bottom: 14px;
}
.context-questionnaire-field > span,
.context-subject-target label {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
}
.context-questionnaire-field select,
.context-subject-target select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #d8d0c4;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 12px;
}
.context-questionnaire-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.context-questionnaire-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.context-questionnaire-toggle input { accent-color: var(--cream-dark); }
.context-questionnaire-other {
    display: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.context-questionnaire-other.is-open { display: block; }
.context-subject-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.context-subject-types label { position: relative; cursor: pointer; }
.context-subject-types input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.context-subject-types span {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8d0c4;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
}
.context-subject-types input:checked + span {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
}
.context-subject-target { display: none; }
.context-subject-target.is-visible { display: block; }

@media (max-width: 640px) {
    .context-questionnaire-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
    .context-questionnaire-heading strong { text-align: left; }
    .context-questionnaire-grid { grid-template-columns: 1fr; }
    .context-subject-types { display: grid; grid-template-columns: 1fr; }
    .context-subject-types span { width: 100%; }
}

/* ===== Questionnaire devis en popup ===== */
body.quote-popup-open { overflow: hidden; }

.quote-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.quote-popup.is-open { display: flex; }
.quote-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 14, .72);
    backdrop-filter: blur(5px);
}
.quote-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    max-height: min(88vh, 920px);
    overflow-y: auto;
    padding: 42px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    outline: none;
}
.quote-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    background: #f2eee7;
    color: var(--black);
    font: inherit;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.quote-popup-head { padding-right: 38px; margin-bottom: 28px; }
.quote-popup-head .section-eyebrow { margin-bottom: 12px; }
.quote-popup-head h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -.04em;
}
.quote-popup-head > p:last-child {
    margin: 0;
    max-width: 620px;
    font-size: 13px;
    line-height: 1.7;
    color: #626262;
}
.quote-popup-step { display: none; }
.quote-popup-step.is-active { display: block; }
.quote-popup-question,
.quote-popup-targets > p {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 800;
}
.quote-popup-radios {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.quote-popup-radios label { position: relative; cursor: pointer; }
.quote-popup-radios input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.quote-popup-radios span,
.quote-popup-choice {
    width: 100%;
    min-height: 50px;
    padding: 11px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d2c7;
    background: #fff;
    color: var(--black);
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.quote-popup-radios input:checked + span,
.quote-popup-choice:hover,
.quote-popup-choice:focus-visible {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
}
.quote-popup-targets {
    display: none;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.quote-popup-targets.is-visible { display: block; }
.quote-popup-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.quote-popup-recruitment .button { margin-top: 4px; }
.quote-popup-current {
    margin-bottom: 22px;
    padding: 15px 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    background: #f7f4ef;
    border: 1px solid var(--border);
    font-size: 11px;
}
.quote-popup-current strong { color: var(--cream-dark); }
.quote-popup-current button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--black);
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
}
.quote-popup-dynamic-fields,
.quote-popup-grid-two,
.quote-popup-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.quote-popup-grid-two { margin-top: 12px; }
.quote-popup-contact-grid {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.quote-popup-field { display: block; }
.quote-popup-field > span {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
}
.quote-popup-field input,
.quote-popup-field select,
.quote-popup-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid #d8d0c4;
    border-radius: 0;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 12px;
    outline: none;
}
.quote-popup-field textarea {
    min-height: 105px;
    padding-top: 11px;
    resize: vertical;
}
.quote-popup-field input:focus,
.quote-popup-field select:focus,
.quote-popup-field textarea:focus { border-color: var(--cream-dark); }
.quote-popup-field-full { grid-column: 1 / -1; }
.quote-popup-consent { margin-top: 16px; }
.quote-popup-actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.quote-popup-actions > a {
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 700px) {
    .quote-popup { padding: 12px; align-items: flex-end; }
    .quote-popup-dialog {
        width: 100%;
        max-height: 92vh;
        padding: 30px 20px 24px;
    }
    .quote-popup-close { top: 12px; right: 12px; }
    .quote-popup-head { padding-right: 32px; margin-bottom: 22px; }
    .quote-popup-head h2 { font-size: 31px; }
    .quote-popup-radios,
    .quote-popup-choice-grid,
    .quote-popup-dynamic-fields,
    .quote-popup-grid-two,
    .quote-popup-contact-grid { grid-template-columns: 1fr; }
    .quote-popup-current { grid-template-columns: 1fr auto; }
    .quote-popup-current > span { grid-column: 1 / -1; }
    .quote-popup-actions { align-items: stretch; flex-direction: column; }
    .quote-popup-actions .button { width: 100%; }
    .quote-popup-actions > a { text-align: center; }
}

/* =========================================================
   RECRUTEMENT - page premium + formulaire dynamique
   ========================================================= */
.recruitment-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
    background: #181818;
}

.recruitment-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero-securite-solutions.jpg') center 42%/cover no-repeat;
    transform: scale(1.015);
}

.recruitment-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22,22,22,.94) 0%, rgba(22,22,22,.78) 48%, rgba(22,22,22,.4) 100%);
}

.recruitment-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 58px;
    padding-bottom: 58px;
}

.recruitment-hero-copy {
    max-width: 760px;
}

.recruitment-hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    font-size: clamp(48px, 5.1vw, 76px);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 800;
    text-wrap: balance;
}

.recruitment-hero-description {
    max-width: 690px;
    margin: 0 0 30px;
    font-size: 13px;
    line-height: 1.72;
    font-weight: 500;
    color: rgba(255,255,255,.9);
}

.recruitment-section {
    padding: 92px 0;
}

.recruitment-intro {
    background: #f7f4ef;
}

.recruitment-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 84px;
    align-items: start;
}

.recruitment-heading h2,
.recruitment-section-head h2,
.recruitment-process-copy h2,
.recruitment-form-aside h2,
.recruitment-final-cta h2 {
    margin: 0;
    font-size: clamp(2.1rem, 3.15vw, 3.05rem);
    line-height: 1.04;
    letter-spacing: -.04em;
    font-weight: 800;
    text-wrap: balance;
}

.recruitment-intro-copy p,
.recruitment-section-head > p:not(.section-eyebrow),
.recruitment-process-copy > p:not(.section-eyebrow),
.recruitment-form-aside > p:not(.section-eyebrow),
.recruitment-profile-card p,
.recruitment-aside-note span {
    font-size: 13px;
    line-height: 1.72;
}

.recruitment-intro-copy p {
    margin: 0 0 18px;
}

.recruitment-profiles {
    background: #202020;
    color: #fff;
}

.recruitment-section-head {
    max-width: 790px;
    margin-bottom: 48px;
}

.recruitment-section-head h2 {
    color: #fff;
    margin-bottom: 16px;
}

.recruitment-section-head > p:not(.section-eyebrow) {
    max-width: 660px;
    margin: 0;
    color: rgba(255,255,255,.72);
}

.recruitment-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.18);
}

.recruitment-profile-card {
    min-height: 250px;
    padding: 28px 28px 28px 0;
    border-right: 1px solid rgba(255,255,255,.18);
}

.recruitment-profile-card + .recruitment-profile-card {
    padding-left: 28px;
}

.recruitment-profile-card:last-child {
    border-right: 0;
}

.recruitment-profile-card > span {
    display: block;
    margin-bottom: 48px;
    color: #d3b47d;
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 800;
}

.recruitment-profile-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.05rem;
}

.recruitment-profile-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
}

.recruitment-process {
    background: #fff;
}

.recruitment-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    align-items: center;
}

.recruitment-process-copy h2 {
    margin-bottom: 18px;
}

.recruitment-process-copy > p:not(.section-eyebrow) {
    margin: 0;
    max-width: 610px;
}

.recruitment-process-steps {
    border-top: 1px solid #ded8cf;
}

.recruitment-process-steps > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 84px;
    border-bottom: 1px solid #ded8cf;
}

.recruitment-process-steps strong {
    color: #d3b47d;
    font-size: 1.65rem;
}

.recruitment-process-steps span {
    font-size: 13px;
    font-weight: 700;
}

.recruitment-form-section {
    background: #d3b47d;
}

.recruitment-form-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 68px;
    align-items: start;
}

.recruitment-form-aside {
    position: sticky;
    top: 110px;
    padding-top: 8px;
}

.recruitment-form-aside h2 {
    margin-bottom: 20px;
}

.recruitment-form-aside > p:not(.section-eyebrow) {
    margin: 0;
}

.recruitment-aside-note {
    margin-top: 34px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(32,32,32,.28);
    display: grid;
    gap: 7px;
}

.recruitment-aside-note strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.recruitment-aside-note span {
    color: rgba(32,32,32,.72);
}

.recruitment-form-card {
    background: #fff;
    padding: 38px;
    box-shadow: 0 28px 70px rgba(65,48,27,.14);
}

.recruitment-switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    margin-bottom: 30px;
    padding: 18px 20px;
    background: #f7f4ef;
    border: 1px solid #e2ddd5;
}

.recruitment-switch-row > div {
    display: grid;
    gap: 5px;
}

.recruitment-switch-row strong {
    font-size: 13px;
}

.recruitment-switch-row > div > span {
    max-width: 520px;
    font-size: 11px;
    line-height: 1.55;
    color: #6d665f;
}

.recruitment-switch {
    flex: 0 0 auto;
    display: inline-grid;
    grid-template-columns: 48px auto;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.recruitment-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.recruitment-switch-slider {
    position: relative;
    width: 48px;
    height: 26px;
    border-radius: 999px;
    background: #202020;
    transition: background .2s ease;
}

.recruitment-switch-slider::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform .2s ease;
}

.recruitment-switch input:checked + .recruitment-switch-slider {
    background: #b98c57;
}

.recruitment-switch input:checked + .recruitment-switch-slider::after {
    transform: translateX(22px);
}

.recruitment-switch input:focus-visible + .recruitment-switch-slider {
    outline: 3px solid rgba(185,140,87,.22);
    outline-offset: 3px;
}

.recruitment-switch-label {
    white-space: nowrap;
    font-size: 11px;
    font-weight: 800;
}

.recruitment-track-panel {
    margin: 0;
    padding: 0;
    border: 0;
}

.recruitment-track-panel[hidden] {
    display: none;
}

.recruitment-track-panel legend,
.recruitment-common-fields h3 {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 13px;
    border-bottom: 1px solid #e5dfd6;
    font-size: 15px;
    font-weight: 800;
}

.recruitment-common-fields {
    margin-top: 32px;
    padding-top: 30px;
    border-top: 1px solid #e5dfd6;
}

.recruitment-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.recruitment-field {
    display: grid;
    gap: 8px;
}

.recruitment-field-full {
    grid-column: 1 / -1;
}

.recruitment-field > span {
    font-size: 11px;
    font-weight: 700;
}

.recruitment-field input,
.recruitment-field select,
.recruitment-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #d8d0c4;
    border-radius: 0;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 12px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.recruitment-field textarea {
    min-height: 118px;
    resize: vertical;
}

.recruitment-field input:focus,
.recruitment-field select:focus,
.recruitment-field textarea:focus {
    border-color: #b98c57;
    box-shadow: 0 0 0 3px rgba(185,140,87,.11);
}

.recruitment-consent {
    margin: 22px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 10px;
    line-height: 1.55;
    color: #6c645d;
}

.recruitment-consent input {
    margin-top: 2px;
}

.recruitment-submit {
    width: 100%;
}

.recruitment-final-cta {
    padding: 54px 0;
    background: #f7f4ef;
}

.recruitment-final-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
}

.recruitment-final-cta h2 {
    font-size: clamp(1.8rem, 2.7vw, 2.55rem);
}

@media (max-width: 980px) {
    .recruitment-intro-grid,
    .recruitment-process-grid,
    .recruitment-form-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

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

    .recruitment-profile-card:nth-child(2) {
        border-right: 0;
    }

    .recruitment-profile-card:nth-child(3),
    .recruitment-profile-card:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.18);
    }

    .recruitment-form-aside {
        position: static;
    }
}

@media (max-width: 700px) {
    .recruitment-hero,
    .recruitment-hero-inner {
        min-height: 560px;
    }

    .recruitment-hero-inner {
        padding-top: 70px;
        padding-bottom: 44px;
    }

    .recruitment-hero h1 {
        font-size: clamp(39px, 12vw, 56px);
    }

    .recruitment-section {
        padding: 64px 0;
    }

    .recruitment-heading h2,
    .recruitment-section-head h2,
    .recruitment-process-copy h2,
    .recruitment-form-aside h2 {
        font-size: 2rem;
        line-height: 1.06;
    }

    .recruitment-profile-grid,
    .recruitment-fields-grid {
        grid-template-columns: 1fr;
    }

    .recruitment-profile-card,
    .recruitment-profile-card + .recruitment-profile-card {
        min-height: auto;
        padding: 26px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .recruitment-profile-card:nth-child(3),
    .recruitment-profile-card:nth-child(4) {
        border-top: 0;
    }

    .recruitment-profile-card:last-child {
        border-bottom: 0;
    }

    .recruitment-profile-card > span {
        margin-bottom: 24px;
        font-size: 2.6rem;
    }

    .recruitment-form-card {
        padding: 24px 18px;
    }

    .recruitment-switch-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .recruitment-field-full {
        grid-column: auto;
    }

    .recruitment-final-cta-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .recruitment-final-cta-inner .button {
        width: 100%;
        text-align: center;
    }
}

/* Recrutement - qualifications contextuelles */
.recruitment-qualification-intro p {
    margin: 4px 0 0;
    max-width: 760px;
    font-size: 12px;
    line-height: 1.65;
    opacity: .72;
}

/* =========================================================
   OFFRES D'EMPLOI / RECRUTEMENT
   ========================================================= */
.recruitment-jobs{background:#f4f1ed}.recruitment-jobs-head{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:56px;align-items:end;margin-bottom:36px}.recruitment-jobs-head h2{margin:8px 0 0;font-size:clamp(30px,3.4vw,48px);line-height:1.02}.recruitment-jobs-head>p{margin:0;font-size:13px;line-height:1.8;color:#666}.recruitment-jobs-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.recruitment-job-card{display:flex;flex-direction:column;min-height:270px;padding:28px;background:#fff;border:1px solid rgba(36,36,36,.09);border-radius:12px}.recruitment-job-card.is-featured{grid-column:1/-1;min-height:320px;padding:38px;border-color:#CFB07B;box-shadow:0 12px 34px rgba(36,36,36,.06)}.recruitment-featured-label{display:inline-flex;width:max-content;margin-bottom:14px;padding:7px 10px;background:#242424;color:#fff;border-radius:999px;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.job-richtext{font-size:13px;line-height:1.8;color:#555}.job-richtext h2{margin:28px 0 12px;font-size:28px;color:#242424}.job-richtext h3{margin:22px 0 10px;font-size:21px;color:#242424}.job-richtext ul,.job-richtext ol{padding-left:20px}.job-richtext p{margin:0 0 14px}.recruitment-job-meta{display:flex;flex-wrap:wrap;gap:7px;margin-bottom:24px}.recruitment-job-meta span{padding:7px 9px;background:#f4f1ed;border-radius:999px;font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.07em}.recruitment-job-card h3{margin:0 0 12px;font-size:20px;line-height:1.25}.recruitment-job-card p{margin:0 0 22px;font-size:13px;line-height:1.7;color:#686868}.recruitment-job-link{margin-top:auto;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.recruitment-job-link span{margin-left:6px}.recruitment-jobs-empty{padding:36px;background:#fff;border:1px solid rgba(36,36,36,.09);border-radius:12px}.recruitment-jobs-empty h3{margin:0 0 8px}.recruitment-jobs-empty p{margin:0 0 20px;font-size:13px;color:#666}.recruitment-selected-offer{display:grid;gap:4px;margin-bottom:24px;padding:18px 20px;background:#f4f1ed;border-left:3px solid #CFB07B}.recruitment-selected-offer span{font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.recruitment-selected-offer strong{font-size:17px}.recruitment-selected-offer small{font-size:11px;color:#666}.job-hero{position:relative;background:#242424;color:#fff;padding:100px 0 88px}.job-hero-inner{max-width:980px}.job-hero h1{max-width:900px;margin:12px 0 20px;font-size:clamp(48px,5.1vw,76px);line-height:.98}.job-hero-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:24px}.job-hero-meta span{padding:8px 10px;border:1px solid rgba(255,255,255,.22);border-radius:999px;font-size:10px;font-weight:700}.job-hero-lead{max-width:720px;margin:0 0 28px;font-size:13px;line-height:1.8;color:rgba(255,255,255,.78)}.job-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:70px;align-items:start}.job-copy{padding-bottom:34px;margin-bottom:34px;border-bottom:1px solid rgba(36,36,36,.1)}.job-copy:last-child{border-bottom:0}.job-copy h2{margin:8px 0 18px;font-size:30px}.job-copy p,.job-copy li{font-size:13px;line-height:1.8;color:#555}.job-copy ul{padding:0;margin:0;list-style:none}.job-copy li{position:relative;padding:8px 0 8px 20px}.job-copy li::before{content:'•';position:absolute;left:0;color:#CFB07B;font-weight:800}.job-aside{position:sticky;top:110px}.job-aside-card{padding:30px;background:#f4f1ed;border-radius:12px}.job-aside-card h2{margin:8px 0 14px;font-size:25px}.job-aside-card p{margin:0 0 22px;font-size:13px;line-height:1.7;color:#666}.job-aside-card .button{width:100%}.job-back-link{display:block;margin-top:16px;text-align:center;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
@media(max-width:900px){.recruitment-jobs-head,.job-content-grid{grid-template-columns:1fr;gap:24px}.recruitment-jobs-grid{grid-template-columns:1fr 1fr}.job-aside{position:static}}@media(max-width:640px){.recruitment-jobs-grid{grid-template-columns:1fr}.job-hero{padding:72px 0 64px}.job-hero h1{font-size:clamp(39px,12vw,56px)}}

/* Recrutement - actions du hero */
.recruitment-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.recruitment-offers-button {
    border: 1px solid rgba(255, 255, 255, .7);
    background: transparent;
    color: #fff;
}

.recruitment-offers-button:hover,
.recruitment-offers-button:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #111;
}

@media (max-width: 640px) {
    .recruitment-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .recruitment-hero-actions .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* =========================================================
   BLOG / ARTICLES
   ========================================================= */

/* =========================================================
 * BLOG + ARTICLES
 * ========================================================= */
.blog-shell,
.article-shell {
    width: min(calc(100% - 48px), 1080px);
    margin: 0 auto;
}

.blog-page,
.article-page {
    background: #f3f0ed;
}

.blog-hero {
    padding: 34px 0 44px;
    background: #f3f0ed;
    border-bottom: 1px solid rgba(36,36,36,.05);
}
.blog-hero .breadcrumb { margin-bottom: 24px; }
.blog-hero .eyebrow {
    margin: 0 0 9px;
    color: #CFB07B;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.blog-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(42px, 4vw, 60px);
    line-height: .98;
    letter-spacing: -.045em;
}
.blog-hero .blog-shell > p:last-child {
    max-width: 650px;
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: #6b6b6b;
}

.blog-listing {
    padding: 32px 0 72px;
    background: #f3f0ed;
}
.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 326px;
    gap: 18px;
    align-items: start;
}
.blog-filter-head {
    min-height: 42px;
    margin-bottom: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(36,36,36,.07);
    font-size: 11px;
}
.blog-filter-head p { margin: 0; }
.blog-filter-head a {
    color: #746250;
    font-weight: 700;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.blog-card {
    position: relative;
    min-height: 215px;
    display: flex;
    overflow: hidden;
    background-image: var(--blog-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}
.blog-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(22,22,22,.26) 0%, rgba(22,22,22,.42) 36%, rgba(22,22,22,.90) 100%);
}
.blog-card-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    padding: 17px 18px 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.blog-tags {
    width: fit-content;
    max-width: 100%;
    padding: 4px 6px;
    display: inline-block;
    background: #CFB07B;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.25;
}
.blog-card h2 {
    margin: 8px 0 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -.02em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: calc(3 * 1.35em);
}
.blog-card p {
    margin: 0 0 12px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: rgba(255,255,255,.92);
    font-size: 9.5px;
    line-height: 1.48;
    height: calc(2 * 1.48em);
}
.blog-card-foot {
    margin-top: 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    font-size: 8px;
}
.blog-card-foot strong {
    color: #e4bf7e;
    font-size: 8.5px;
    white-space: nowrap;
}

.blog-sidebar,
.article-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 26px;
}
.blog-quick-cta {
    padding: 32px 36px;
    background: #242424;
    color: #fff;
}
.blog-quick-cta h2 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
}
.blog-quick-cta p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.92);
    font-size: 9px;
    line-height: 1.45;
}
.blog-quick-cta .button,
.article-inline-cta .button {
    min-height: 36px;
    background: #CFB07B;
    color: #fff;
    border: 0;
    font-size: 10px;
}
.blog-quick-cta .button { width: 100%; }

.blog-categories,
.article-toc {
    padding: 36px;
    background: #fff;
    border: 1px solid rgba(36,36,36,.06);
}
.sidebar-title {
    margin: 0 0 17px;
    padding-bottom: 9px;
    border-bottom: 1px solid #CFB07B;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}
.category-row {
    min-height: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #555;
    color: #746250;
    font-size: 12px;
    transition: color .2s ease;
}
.category-row:hover,
.category-row.is-active { color: #242424; }
.category-row b {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #746250;
    color: #fff;
    font-size: 10px;
}
.blog-empty {
    padding: 38px;
    background: #fff;
    border: 1px solid rgba(36,36,36,.07);
}
.blog-empty h2 { margin: 0 0 10px; font-size: 20px; }
.blog-empty a { color: #746250; font-size: 11px; font-weight: 700; }

.article-head {
    padding: 34px 0 32px;
    background: #f3f0ed;
}
.article-head .breadcrumb { margin-bottom: 22px; }
.article-head .blog-tags { margin-bottom: 10px; }
.article-head h1 {
    max-width: 710px;
    margin: 0;
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: .96;
    letter-spacing: -.045em;
}
.article-meta {
    margin: 10px 0 0;
    font-size: 9px;
}
.article-main {
    padding: 10px 0 72px;
    background: #fff;
}
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 40px;
    align-items: start;
}
.article-featured {
    height: 290px;
    margin-bottom: 34px;
    background: url('/assets/images/hero-securite-solutions.jpg') center 54% / cover no-repeat;
}
.article-prose {
    color: #333;
    font-size: 12px;
    line-height: 1.72;
}
.article-prose h2 {
    scroll-margin-top: 110px;
    margin: 34px 0 13px;
    color: #242424;
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -.025em;
    font-weight: 500;
}
.article-prose h2:first-child { margin-top: 0; }
.article-prose h3 {
    margin: 28px 0 11px;
    font-size: 19px;
}
.article-prose p { margin: 0 0 16px; }
.article-prose blockquote {
    margin: 26px 34px;
    padding: 0 0 0 20px;
    border-left: 2px solid #CFB07B;
    font-size: 12px;
}
.article-prose ul,
.article-prose ol { padding-left: 20px; }
.article-prose a {
    color: #746250;
    text-decoration: underline;
}
.article-inline-cta {
    margin: 30px 0;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #242424;
    border-radius: 3px;
    color: #fff;
}
.article-inline-cta-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}
.article-inline-cta strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.38;
}
.article-inline-cta span {
    color: rgba(255,255,255,.57);
    font-size: 10px;
    line-height: 1.5;
}
.article-inline-cta .button {
    flex: 0 0 auto;
    padding: 0 20px;
    white-space: nowrap;
}

.article-toc { display: grid; }
.article-toc a {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    color: #4d4d4d;
    font-size: 9.5px;
    line-height: 1.35;
}
.article-related {
    position: relative;
    min-height: 150px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(rgba(20,20,20,.42), rgba(20,20,20,.88)),
        url('/assets/images/hero-securite-solutions.jpg') center / cover;
    color: #fff;
}
.article-related small {
    width: fit-content;
    margin-bottom: 8px;
    padding: 4px 5px;
    background: #CFB07B;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
}
.article-related span {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}
.article-related strong {
    margin-top: 9px;
    align-self: flex-end;
    color: #e2bf82;
    font-size: 8px;
}
.article-faq { margin-top: 46px; }
.article-faq h2 {
    margin: 0 0 15px;
    font-size: 18px;
}
.article-faq details {
    border: 1px solid #d9d9d9;
    border-bottom: 0;
}
.article-faq details:last-child { border-bottom: 1px solid #d9d9d9; }
.article-faq summary {
    padding: 11px 14px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
}
.article-faq details[open] summary {
    background: #242424;
    color: #fff;
}
.article-faq details > div {
    padding: 13px 14px;
    font-size: 10.5px;
    line-height: 1.65;
}

.blog-page .floating-quote-cta,
.article-page .floating-quote-cta {
    right: 18px;
    bottom: 18px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 9px;
}

@media (max-width: 900px) {
    .blog-layout,
    .article-layout { grid-template-columns: 1fr; }
    .blog-sidebar,
    .article-sidebar { position: static; }
    .blog-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-toc { grid-column: 1 / -1; }
    .article-featured { height: 300px; }
}

@media (max-width: 640px) {
    .blog-shell,
    .article-shell { width: min(calc(100% - 32px), 1080px); }
    .blog-hero { padding: 28px 0 36px; }
    .blog-hero h1 { font-size: clamp(39px, 12vw, 52px); }
    .blog-listing { padding-top: 24px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { min-height: 235px; }
    .blog-sidebar,
    .article-sidebar { grid-template-columns: 1fr; }
    .article-head h1 { font-size: clamp(36px, 11vw, 50px); }
    .article-featured { height: 220px; }
    .article-inline-cta {
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .article-inline-cta .button { width: 100%; }
    .blog-categories,
    .article-toc { padding: 28px; }
}

/* =========================================================
   BLOG - FIL D'ARIANE SOBRE ET INTÉGRÉ AU HERO
   ========================================================= */
.blog-hero .breadcrumb,
.article-head .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: auto;
    min-height: 0;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    background: transparent;
    border: 0;
    color: rgba(36, 36, 36, .58);
    font-size: 10px;
    line-height: 1.4;
    white-space: normal;
}

.blog-hero .breadcrumb a,
.article-head .breadcrumb a {
    color: rgba(36, 36, 36, .62);
    text-decoration: none;
    font-weight: 500;
}

.blog-hero .breadcrumb a:hover,
.article-head .breadcrumb a:hover {
    color: #746250;
}

.blog-hero .breadcrumb > span:not([aria-current="page"]),
.article-head .breadcrumb > span:not([aria-current="page"]) {
    color: rgba(36, 36, 36, .30);
    font-size: 11px;
}

.blog-hero .breadcrumb [aria-current="page"],
.article-head .breadcrumb [aria-current="page"] {
    min-width: 0;
    max-width: 680px;
    overflow: hidden;
    color: #746250;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-hero .breadcrumb {
    margin-bottom: 18px;
}

.article-head .breadcrumb {
    margin-bottom: 18px;
}

@media (max-width: 760px) {
    .article-head .breadcrumb [aria-current="page"] {
        max-width: min(62vw, 360px);
    }
}


/* =========================================================
   FOOTER - largeur site + liens dynamiques
   ========================================================= */
.model-footer-grid {
    width: min(calc(100% - 48px), var(--container));
    max-width: var(--container);
    margin: 0 auto;
    grid-template-columns: minmax(280px, 1.65fr) 1fr 1fr 1.15fr;
    gap: clamp(38px, 5vw, 72px);
}
.model-footer-column a { transition: color .2s ease; }
.model-footer-column a:hover { color: #fff; }
.model-footer-credit a { display: inline; color: inherit; }
.model-footer-credit a:hover strong { color: #fff; }
.footer-external { font-size: .78em; opacity: .7; }

/* =========================================================
   MENTIONS LÉGALES
   ========================================================= */
.legal-hero, .projects-hero { padding: 34px 0 72px; background: var(--off-white); }
.legal-shell, .projects-shell { max-width: 980px; }
.legal-hero h1, .projects-hero h1 { margin: 12px 0 16px; font-size: clamp(42px, 6vw, 72px); line-height: .96; letter-spacing: -.045em; }
.legal-hero .legal-shell > p:last-child, .projects-hero .projects-shell > p:last-child { max-width: 700px; color: var(--muted); line-height: 1.65; }
.legal-content-section { background: #fff; }
.legal-content { max-width: 980px; display: grid; gap: 18px; }
.legal-card { padding: 30px 32px; border: 1px solid var(--border); background: #fff; }
.legal-card h2 { margin: 0 0 14px; font-size: 1.35rem; }
.legal-card p { margin: 0 0 12px; line-height: 1.7; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a { color: var(--cream-dark); font-weight: 700; }
.legal-pending { padding: 12px 14px; background: var(--off-white); border-left: 3px solid var(--cream); }

/* =========================================================
   RÉALISATIONS
   ========================================================= */
.projects-section { background: #fff; }
.projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.project-card { border: 1px solid var(--border); background: #fff; }
.project-card-media { aspect-ratio: 4 / 3; background: linear-gradient(rgba(20,20,20,.18),rgba(20,20,20,.58)), url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat; }
.project-card-body { padding: 24px; }
.project-card-category { margin: 0 0 10px; color: var(--cream-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.project-card h2 { margin: 0 0 12px; font-size: 1.3rem; line-height: 1.15; }
.project-card-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 14px; color: var(--muted); font-size: 11px; font-weight: 600; }
.project-card-body > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.projects-empty { max-width: 780px; padding: 50px; background: var(--off-white); }
.projects-empty h2 { max-width: 650px; margin-bottom: 14px; }

.home-projects-section { background: var(--off-white); }
.home-projects-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 28px; }
.home-projects-heading h2 { margin: 4px 0 0; font-size: clamp(2rem, 3vw, 2.65rem); }
.home-projects-all { padding-bottom: 4px; border-bottom: 1px solid var(--cream-dark); color: var(--cream-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.home-projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.home-project-media { position: relative; min-height: 360px; background: linear-gradient(rgba(20,20,20,.12),rgba(20,20,20,.68)), url('/assets/images/hero-securite-solutions.jpg') center/cover no-repeat; }
.home-project-overlay { position: absolute; left: 22px; right: 22px; bottom: 22px; color: #fff; }
.home-project-overlay p { display: inline-block; margin: 0 0 10px; padding: 5px 8px; background: var(--cream); color: #fff; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.home-project-overlay h3 { margin: 0 0 8px; color: #fff; font-size: 1.25rem; line-height: 1.15; }
.home-project-overlay span { font-size: 11px; opacity: .85; }

@media (max-width: 900px) {
    .projects-grid, .home-projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .model-footer-grid { width: min(calc(100% - 36px), var(--container)); }
    .legal-hero, .projects-hero { padding: 26px 0 54px; }
    .legal-card { padding: 24px 20px; }
    .projects-grid, .home-projects-grid { grid-template-columns: 1fr; }
    .home-projects-heading { align-items: flex-start; flex-direction: column; }
    .home-project-media { min-height: 320px; }
}

/* =========================================================
   FOOTER MOBILE V14
   ========================================================= */
.model-footer-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(220px, .8fr);
    gap: 32px;
    align-items: end;
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.model-footer .model-cnaps {
    margin: 0 !important;
    max-width: 760px;
    color: #77716c;
    font-size: .78rem;
    line-height: 1.55;
}
.model-footer .model-footer-credit {
    margin: 0;
    text-align: right;
    color: #77716c;
    font-size: .82rem;
}
.model-footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.model-footer-hours { margin: 0 0 18px !important; }

@media (max-width: 900px) {
    .model-footer-bottom {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .model-footer .model-footer-credit { text-align: left; }
}

@media (max-width: 640px) {
    .model-footer {
        padding: 34px 0 24px;
    }
    .model-footer-grid {
        width: min(calc(100% - 32px), var(--container));
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 22px;
    }
    .model-footer-brand {
        grid-column: 1 / -1;
        padding: 0 0 26px;
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .model-footer-logo {
        margin-bottom: 18px;
        font-size: 1.35rem;
        letter-spacing: -.025em;
    }
    .model-footer-contact {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px 16px;
        align-items: end;
    }
    .model-footer-brand address {
        margin: 0;
        color: #aaa39d;
        font-size: .88rem;
        line-height: 1.55;
    }
    .model-footer-hours {
        grid-column: 1;
        margin: 0 !important;
        color: #77716c;
        font-size: .78rem;
    }
    .model-footer-phone {
        grid-column: 2;
        grid-row: 1 / span 2;
        display: inline-flex;
        min-height: 46px;
        padding: 0 14px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(217,184,115,.45);
        border-radius: 999px;
        font-size: .96rem;
        white-space: nowrap;
    }
    .model-footer-column {
        padding: 23px 0 25px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        gap: 0;
    }
    .model-footer-column:first-of-type {
        border-right: 1px solid rgba(255,255,255,.08);
        padding-right: 18px;
    }
    .model-footer-column:nth-of-type(2) {
        padding-left: 0;
    }
    .model-footer-info {
        grid-column: 1 / -1;
    }
    .model-footer-column .footer-title {
        margin: 0 0 14px;
        font-size: .72rem;
        letter-spacing: .08em;
    }
    .model-footer-links {
        gap: 0;
    }
    .model-footer-column a {
        display: block;
        padding: 5px 0;
        font-size: .83rem;
        line-height: 1.35;
    }
    .model-footer-info .model-footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
    }
    .model-footer-bottom {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 0;
        padding-top: 24px;
        border-top: 0;
    }
    .model-footer .model-cnaps {
        order: 2;
        font-size: .69rem;
        line-height: 1.5;
    }
    .model-footer .model-footer-credit {
        order: 1;
        width: 100%;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: .76rem;
        line-height: 1.55;
    }
}

@media (max-width: 420px) {
    .model-footer-contact {
        grid-template-columns: 1fr;
    }
    .model-footer-phone {
        grid-column: 1;
        grid-row: auto;
        width: fit-content;
        margin-top: 8px;
    }
    .model-footer-grid {
        grid-template-columns: 1fr;
    }
    .model-footer-column,
    .model-footer-column:first-of-type,
    .model-footer-column:nth-of-type(2) {
        grid-column: 1;
        padding-left: 0;
        padding-right: 0;
        border-right: 0;
    }
    .model-footer-column:not(.model-footer-info) .model-footer-links,
    .model-footer-info .model-footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 18px;
    }
}
