:root {
    --bg: #f6f8fb;
    --bg-alt: #eaf0f6;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: #ffffff;
    --surface-soft: #edf1f6;
    --ink: #172332;
    --ink-muted: #5f6d7a;
    --ink-dark: #0c1826;
    --line: rgba(23, 35, 50, 0.1);
    --line-strong: rgba(20, 56, 98, 0.16);
    --brand: #173d69;
    --brand-bright: #6a93c4;
    --brand-deep: #0f2744;
    --accent: #f0b323;
    --shadow: 0 24px 60px rgba(12, 24, 38, 0.1);
    --radius: 24px;
    --radius-sm: 12px;
    --container: 1240px;
    --anchor-offset: 120px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--anchor-offset);
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(106, 147, 196, 0.16), transparent 24%),
        linear-gradient(180deg, #fbfdff 0%, #f5f8fc 44%, #edf2f7 100%);
}

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

figure {
    margin: 0;
}

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

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

iframe {
    border: 0;
}

.page-shell {
    min-height: 100vh;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(246, 248, 251, 0.92);
    border-bottom: 1px solid rgba(23, 35, 50, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.brand span {
    white-space: nowrap;
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--ink-muted);
    font-size: 0.95rem;
}

.site-menu a {
    position: relative;
}

.site-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 1px;
    background: var(--brand-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
    color: var(--ink);
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
    transform: scaleX(1);
}

.site-menu .button {
    color: #ffffff;
}

.site-menu .button::after {
    display: none;
}

.site-menu .button:hover,
.site-menu .button:focus-visible {
    color: #ffffff;
}

.nav-toggle {
    display: none;
    padding: 0;
    border: 1px solid rgba(23, 35, 50, 0.1);
    background: rgba(255, 255, 255, 0.92);
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 14px;
}

.nav-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:first-child {
    transform: translateY(-4px);
}

.nav-toggle span:last-child {
    transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
}

.hero,
.section {
    position: relative;
}

.hero {
    padding: 4.8rem 0 2.4rem;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(23, 61, 105, 0.04) 49.8%, transparent 50.2%, transparent 100%),
        linear-gradient(rgba(23, 61, 105, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 100% 76px;
    pointer-events: none;
    z-index: 0;
}

.hero__grid,
.split {
    display: grid;
    gap: 1.5rem;
    align-items: stretch;
}

.hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero__grid--media,
.split--media {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
}

.split--reverse {
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
}

.eyebrow {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--brand-bright);
}

.hero h1,
.section-heading h2,
.content-panel h2,
.offer-card h3,
.price-card h3,
.service-card h3 {
    margin: 0;
    line-height: 1.05;
}

.hero h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 4.8vw, 4.3rem);
}

.hero__lead,
.hero__sublead,
.section-heading p,
.content-panel p,
.offer-card p,
.service-card p,
.contact-note span,
.micro-note {
    color: var(--ink-muted);
    line-height: 1.7;
}

.hero__lead {
    max-width: 58ch;
    margin: 1.2rem 0 0;
    font-size: 1.08rem;
}

.hero__sublead {
    max-width: 64ch;
    margin: 1rem 0 0;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 2.25rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 52px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #173d69 0%, #2a5f97 100%);
    color: #ffffff;
    border: 1px solid transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 36px rgba(15, 39, 68, 0.24);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    color: #ffffff;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.65);
    color: var(--brand);
    border-color: rgba(23, 61, 105, 0.14);
    box-shadow: none;
}

.button--small {
    min-height: 42px;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    color: var(--brand);
}

.hero__stats,
.pricing-grid,
.cards-grid,
.gallery-grid,
.video-grid,
.service-grid {
    display: grid;
    gap: 1rem;
}

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

.stat-card,
.offer-card,
.price-card,
.gallery-card,
.service-card,
.content-panel,
.media-card,
.video-card,
.contact-form {
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.stat-card {
    display: grid;
    gap: 0.35rem;
    padding: 1.1rem 1rem;
}

.stat-card__icon,
.price-card__icon,
.service-card__icon {
    display: inline-grid;
    place-items: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    background: rgba(23, 61, 105, 0.1);
    color: var(--brand);
    flex-shrink: 0;
}

.stat-card__icon i,
.price-card__icon i,
.service-card__icon i {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    text-align: center;
    font-size: 0.95rem;
}

.stat-card strong {
    display: block;
    font-size: 1.35rem;
    color: var(--brand-deep);
}

.stat-card span {
    display: block;
    margin-top: 0.3rem;
    color: var(--ink-muted);
}

.hero-visuals {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0.75rem 0 0;
}

.hero-media,
.media-card {
    overflow: hidden;
}

.hero-media {
    border-radius: 32px;
    background: var(--surface-strong);
    box-shadow: 0 30px 70px rgba(15, 39, 68, 0.18);
    min-height: 0;
    width: min(100%, 34rem);
}

.hero-media--primary {
    align-self: flex-start;
    aspect-ratio: 5 / 4;
    z-index: 2;
}

.hero-media--secondary {
    width: min(82%, 28rem);
    margin: -3.75rem 0.75rem 0 0;
    aspect-ratio: 4 / 3;
    z-index: 1;
    border: 10px solid rgba(246, 248, 251, 0.94);
}

.hero-media img,
.media-card img,
.gallery-card img,
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media img {
    width: 100%;
    height: 100%;
}

.hero-media--primary img {
    object-position: center center;
}

.hero-media--secondary img {
    object-position: center center;
}

.micro-note {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
    font-size: 0.94rem;
}

.section {
    padding: 2rem 0 4.4rem;
}

.section--accent {
    background: linear-gradient(180deg, rgba(234, 240, 246, 0.45), rgba(255, 255, 255, 0));
}

.section--darkband {
    background: linear-gradient(135deg, #11263e 0%, #173d69 100%);
}

.section--video {
    background: linear-gradient(180deg, rgba(23, 61, 105, 0.05), transparent);
}

.section-heading {
    margin-bottom: 1.6rem;
}

.section-heading--wide {
    max-width: 78ch;
}

.section-heading--tight {
    max-width: 44ch;
}

.section-heading--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 60ch;
}

.lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--ink-muted);
    max-width: 58ch;
    margin: 0.5rem 0 0;
}

.section-heading h2,
.content-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.content-panel,
.offer-card,
.price-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content-panel--dark {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
}

.content-panel--dark p,
.content-panel--dark li,
.content-panel--dark .contact-note span {
    color: rgba(255, 255, 255, 0.82);
}

.feature-list,
.offer-card ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.feature-list li,
.offer-card li {
    padding-left: 1.45rem;
    position: relative;
    line-height: 1.65;
}

.feature-list li::before,
.offer-card li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.82rem;
    color: var(--accent);
}

.content-panel--dark .feature-list li::before {
    color: #ffffff;
}

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

.cards-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

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

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.price-card {
    justify-content: flex-start;
}

.price-card__icon {
    margin-bottom: 0.9rem;
}

.price-card strong {
    display: block;
    margin-top: 0.9rem;
    font-size: 1.9rem;
    color: var(--brand-deep);
}

.price-card__meta {
    margin: 0 0 0.8rem;
    color: var(--brand-bright);
    font-size: 0.84rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.gallery-grid--small {
    margin-top: 1rem;
}

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

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

.gallery-card {
    overflow: hidden;
}

.gallery-card img {
    aspect-ratio: 1.2 / 1;
}

.gallery-card figcaption {
    padding: 1rem 1rem 1.15rem;
    color: var(--ink-muted);
}

.media-card {
    min-height: 320px;
    display: flex;
}

.media-card img {
    flex: 1;
    min-height: 0;
}

.media-card--tall {
    min-height: 400px;
}

.media-card--panorama {
    min-height: 0;
    margin-top: 1rem;
    overflow: hidden;
}

.media-card--panorama img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.panorama-viewport {
    width: 100%;
}

.panorama-viewport img {
    width: 100%;
    height: auto;
    display: block;
}

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

.video-card {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0c1826;
    position: relative;
}

.video-card iframe,
.video-card__trigger,
.video-card__trigger img {
    width: 100%;
    height: 100%;
}

.video-card__trigger {
    border: 0;
    padding: 0;
    display: block;
    position: relative;
    cursor: pointer;
    background: #0c1826;
    color: #fff;
    text-align: left;
}

.video-card__trigger img {
    object-fit: cover;
    display: block;
}

.video-card__trigger:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: -6px;
}

.video-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 15, 26, 0.12) 0%, rgba(7, 15, 26, 0.7) 100%),
        linear-gradient(90deg, rgba(7, 15, 26, 0.34) 0%, rgba(7, 15, 26, 0.08) 52%, rgba(7, 15, 26, 0.42) 100%);
    transition: opacity 160ms ease;
}

.video-card__trigger:hover .video-card__overlay,
.video-card__trigger:focus-visible .video-card__overlay {
    opacity: 0.88;
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    color: #0c1826;
    box-shadow: 0 14px 28px rgba(7, 15, 26, 0.28);
    font-size: 1.35rem;
}

.video-card__meta {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.3rem;
    z-index: 1;
}

.video-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
}

.video-card__title {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

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

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    aspect-ratio: 1.25 / 1;
    flex-shrink: 0;
}

.service-card__body {
    padding: 1.2rem 1.25rem 1.35rem;
}

.service-card__icon {
    margin-bottom: 0.9rem;
}

.situation-panel {
    justify-content: flex-start;
}

.map-embed {
    position: relative;
    margin-top: 1.2rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.map-frame {
    width: 100%;
    min-height: 320px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.map-frame--inline {
    flex-shrink: 0;
}

.map-zoom-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    display: grid;
    gap: 0.5rem;
}

.map-zoom-button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-deep);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 18px 32px rgba(12, 24, 38, 0.16);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.map-zoom-button:hover,
.map-zoom-button:focus-visible {
    transform: translateY(-1px);
    background: var(--brand);
    color: #ffffff;
}

.map-route-link {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-layout .section-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
    align-content: start;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
}

.contact-form span {
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(23, 35, 50, 0.14);
    background: rgba(255, 255, 255, 0.92);
    padding: 0.95rem 1rem;
    color: var(--ink);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.85rem;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    border-radius: 14px;
    padding: 0.95rem 1rem;
    line-height: 1.6;
}

.form-message--success {
    background: rgba(44, 126, 90, 0.12);
    color: #17563a;
}

.form-message--error {
    background: rgba(178, 37, 37, 0.1);
    color: #842121;
}

.contact-note {
    margin-top: 1.4rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(23, 35, 50, 0.08);
}

.contact-note strong {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.35rem;
}

.site-footer {
    margin-top: 2.5rem;
    padding: 2.75rem 0 1.4rem;
    background: linear-gradient(180deg, rgba(234, 240, 246, 0.58), rgba(246, 248, 251, 0.94));
    color: var(--ink);
    border-top: 1px solid rgba(23, 35, 50, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-col {
    padding: 0;
}

.site-footer .brand {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--brand-deep);
}

.site-footer .brand img {
    width: 48px;
    height: 48px;
}

.footer-desc,
.footer-meta,
.footer-note,
.footer-bottom p {
    margin: 0;
    line-height: 1.7;
    color: var(--ink-muted);
}

.footer-meta,
.footer-note {
    margin-top: 0.7rem;
    font-size: 0.95rem;
}

.footer-heading {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand-bright);
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--ink-muted);
}

.footer-links li > i,
.footer-links a > i {
    width: 1rem;
    flex: 0 0 1rem;
    margin-top: 0.2rem;
    color: var(--brand-bright);
}

.footer-links a {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--ink);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--brand);
}

.footer-links--contact a,
.footer-links--contact span {
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(23, 35, 50, 0.08);
}

.legal-page {
    padding-top: 3rem;
}

.legal-container {
    max-width: 920px;
}

.legal-updated {
    margin: 0.9rem 0 0;
    color: var(--ink-muted);
}

.legal-section {
    margin-top: 1.25rem;
    padding: 1.45rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.legal-section h2 {
    margin: 0 0 0.85rem;
    font-size: 1.2rem;
}

.legal-section p,
.legal-section li {
    line-height: 1.75;
    color: var(--ink-muted);
}

.legal-section ul {
    margin: 0.8rem 0 0;
    padding-left: 1.2rem;
}

.legal-back {
    margin: 1.5rem 0 0;
}

/* ============================================================
   BLOG — listing & article pages
   ============================================================ */

.section--blog-teaser {
    background: var(--bg-alt);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* --- Article cards --- */

.article-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 64px rgba(12, 24, 38, 0.13);
}

.article-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand));
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.article-card__icon-wrap--juridique {
    background: linear-gradient(135deg, #0c2a4a 0%, #173d69 100%);
}

.article-card__icon-wrap--bureaux {
    background: linear-gradient(135deg, #1a4a6e 0%, #2680c2 100%);
}

.article-card__icon-wrap--stockage {
    background: linear-gradient(135deg, #0f4a3a 0%, #1e8c6a 100%);
}

.article-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.35rem 1.2rem;
    gap: 0.65rem;
}

.article-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand);
    background: rgba(23, 61, 105, 0.08);
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    width: fit-content;
}

.article-card__title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
}

.article-card__title a {
    color: var(--ink-dark);
}

.article-card__title a:hover {
    color: var(--brand);
}

.article-card__excerpt {
    margin: 0;
    font-size: 0.87rem;
    line-height: 1.65;
    color: var(--ink-muted);
    flex: 1;
}

.article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.4rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.77rem;
    color: var(--ink-muted);
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
}

.article-card__link:hover {
    color: var(--brand-deep);
}

.blog-teaser__more {
    margin-top: 2rem;
    text-align: center;
}

/* --- Blog listing page --- */

.blog-page-hero {
    background: linear-gradient(135deg, #0c1826 0%, var(--brand) 100%);
    padding: 3.5rem 0 2.5rem;
    color: #fff;
}

.blog-page-hero .eyebrow {
    color: var(--accent);
}

.blog-page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin: 0.4rem 0 0.75rem;
    max-width: 28ch;
}

.blog-page-hero .lead {
    color: rgba(255, 255, 255, 0.75);
    max-width: 52ch;
    margin: 0;
}

.blog-listing-section {
    padding: 2.5rem 0 4rem;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.blog-filter-btn {
    background: transparent;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-muted);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    font-family: inherit;
}

.blog-filter-btn:hover,
.blog-filter-btn.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

/* Featured article — horizontal card */

.article-card--featured {
    flex-direction: row;
    margin-bottom: 1.75rem;
}

.article-card--featured .article-card__icon-wrap {
    flex: 0 0 220px;
    height: auto;
    min-height: 200px;
    font-size: 3rem;
}

.article-card--featured .article-card__body {
    padding: 1.75rem 2rem 1.5rem;
    gap: 0.75rem;
}

.article-card--featured .article-card__title {
    font-size: 1.3rem;
    line-height: 1.3;
}

.article-card--featured .article-card__excerpt {
    font-size: 0.93rem;
}

.article-card--featured .article-card__tag {
    font-size: 0.7rem;
}

/* Secondary articles grid */

.blog-grid--secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Article page layout */

/* Reading progress bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent);
    z-index: 200;
    transition: width 0.08s linear;
    pointer-events: none;
}

.article-header {
    background: linear-gradient(135deg, #0c1826 0%, var(--brand) 100%);
    padding: 3.5rem 0 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.article-header__icon {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9rem;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    user-select: none;
}

.article-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
}

.article-nav a {
    color: rgba(255, 255, 255, 0.75);
}

.article-nav a:hover {
    color: #fff;
}

.article-nav i {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
}

.article-nav span {
    color: rgba(255, 255, 255, 0.55);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 36ch;
}

.article-header .eyebrow {
    color: var(--accent);
}

.article-title {
    margin: 0.5rem 0 0;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.15;
    color: #fff;
    max-width: 28ch;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
}

.article-meta__sep {
    color: rgba(255, 255, 255, 0.35);
}

/* Two-column article layout */
.article-layout {
    padding: 3rem 0 2rem;
}

.article-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 288px;
    gap: 3.5rem;
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--anchor-offset, 80px) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Sidebar boxes */
.sidebar-box {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
}

.sidebar-box__title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    margin: 0 0 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sidebar-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-toc__list a {
    display: block;
    font-size: 0.84rem;
    line-height: 1.4;
    color: var(--ink-muted);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
    text-decoration: none;
}

.sidebar-toc__list a:hover,
.sidebar-toc__list a.is-active {
    color: var(--brand);
    background: rgba(23, 61, 105, 0.06);
    border-left-color: var(--brand);
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, #0c1826 0%, var(--brand) 100%);
    border-radius: var(--radius);
    padding: 1.6rem 1.35rem;
    color: #fff;
    text-align: center;
}

.sidebar-cta__icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.75rem;
}

.sidebar-cta__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.sidebar-cta__text {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.1rem;
}

.sidebar-cta .button {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
}

/* Article body */
.article-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink);
}

.article-body .article-intro {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--ink-muted);
    border-left: 3px solid var(--accent);
    padding-left: 1.1rem;
    margin-bottom: 2rem;
}

.article-body h2 {
    font-size: 1.3rem;
    line-height: 1.25;
    margin: 2.25rem 0 0.75rem;
    color: var(--ink-dark);
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--line);
}

.article-body p {
    margin: 0 0 1rem;
}

.article-body ul {
    margin: 0 0 1.2rem;
    padding-left: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.article-body li {
    line-height: 1.65;
}

.article-body li strong {
    color: var(--ink-dark);
}

/* Article tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.article-tags__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    margin-right: 0.15rem;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-muted);
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.22rem 0.8rem;
}

.article-back {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

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

.article-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */

.temoignages-carousel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.4rem;
}

.temoignages-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.temoignages-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.temoignages-nav {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--surface-strong);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: 0 2px 8px rgba(12, 24, 38, 0.07);
    transition: border-color 0.2s, background 0.2s, opacity 0.2s;
}

.temoignages-nav:hover {
    border-color: var(--brand);
    background: var(--surface);
}

.temoignages-nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.temoignage-card {
    flex-shrink: 0;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: 0 4px 20px rgba(12, 24, 38, 0.06);
}

.temoignage-card__stars {
    display: flex;
    gap: 0.15rem;
}

.star {
    font-size: 1.1rem;
    color: var(--line-strong);
}

.star--on {
    color: var(--accent);
}

.temoignage-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.temoignage-card__text {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--ink-muted);
    quotes: "\00AB\00A0" "\00A0\00BB";
}

.temoignage-card__text::before {
    content: open-quote;
    font-size: 1.4rem;
    line-height: 0;
    vertical-align: -0.3em;
    color: var(--brand-bright);
    margin-right: 0.15em;
}

.temoignage-voir-plus {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.83rem;
    color: var(--brand-bright);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    align-self: flex-start;
}

.temoignage-voir-plus:hover {
    color: var(--brand);
}

.temoignage-card__footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.temoignage-card__name {
    font-size: 0.95rem;
    color: var(--ink);
}

.temoignage-card__role {
    font-size: 0.83rem;
    color: var(--ink-muted);
}

.temoignage-card__date {
    font-size: 0.78rem;
    color: var(--brand-bright);
    margin-top: 0.1rem;
}

.temoignages-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.4rem;
}

.temoignages-google-btn {
    gap: 0.55rem;
    color: var(--ink);
    border-color: var(--line-strong);
    background: var(--surface-strong);
    box-shadow: 0 2px 12px rgba(12, 24, 38, 0.07);
}

.temoignages-google-btn:hover,
.temoignages-google-btn:focus-visible {
    color: var(--ink);
    border-color: var(--brand);
    background: var(--surface-strong);
}

@media (max-width: 1120px) {
    .site-menu {
        gap: 0.85rem;
        font-size: 0.9rem;
    }

    .hero__grid,
    .hero__grid--media,
    .split--media,
    .split--reverse,
    .contact-layout,
    .footer-grid,
    .cards-grid,
    .cards-grid--two,
    .pricing-grid,
    .gallery-grid,
    .service-grid,
    .video-grid,
    .blog-grid,
    .blog-grid--secondary {
        grid-template-columns: 1fr;
    }

    .article-card--featured {
        flex-direction: column;
    }

    .article-card--featured .article-card__icon-wrap {
        flex: none;
        height: 120px;
        min-height: unset;
    }

    .article-with-sidebar {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: none;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-visuals {
        max-width: 720px;
    }

}

@media (max-width: 840px) {
    .nav {
        min-height: 76px;
    }

    .nav-toggle {
        display: inline-flex;
        width: 58px;
        height: 58px;
    }

    .nav-toggle span {
        width: 22px;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        padding: 0.8rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(23, 35, 50, 0.08);
        box-shadow: var(--shadow);
    }

    .site-menu.is-open {
        display: flex;
    }

    .site-menu a {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 0.95rem 1rem;
        border-radius: 16px;
        background: rgba(23, 61, 105, 0.04);
        color: var(--ink);
        font-size: 1rem;
        font-weight: 700;
    }

    .site-menu a:hover,
    .site-menu a:focus-visible {
        background: rgba(23, 61, 105, 0.08);
    }

    .site-menu a::after {
        display: none;
    }

    .hero {
        padding-top: 3.2rem;
    }

    .hero-visuals {
        max-width: 640px;
    }

    .hero-media--secondary {
        width: min(84%, 22rem);
        margin-top: -3rem;
        margin-right: 0.25rem;
        margin-bottom: -0.5rem;
        border-width: 8px;
    }

    .hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .stat-card {
        align-content: start;
        padding: 0.95rem 0.8rem;
    }

    .stat-card strong {
        font-size: clamp(1.1rem, 3.8vw, 1.45rem);
        line-height: 1.15;
    }

    .stat-card span {
        margin-top: 0.15rem;
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .section {
        padding: 1.5rem 0 3.2rem;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1.1rem), var(--container));
    }

    .brand {
        gap: 0.65rem;
        letter-spacing: 0.12em;
        font-size: 0.9rem;
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

    .button,
    .button--small {
        width: 100%;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero-visuals {
        padding: 0;
    }

    .hero-media {
        border-radius: 24px;
    }

    .hero-media--primary {
        aspect-ratio: 5 / 4;
    }

    .hero-media--secondary {
        width: min(88%, 18rem);
        margin: -2rem 0 0;
        aspect-ratio: 5 / 4;
        border-width: 6px;
    }

    .hero__stats {
        gap: 0.55rem;
    }

    .stat-card {
        padding: 0.85rem 0.7rem;
        border-radius: 22px;
    }

    .stat-card__icon {
        width: 2.15rem;
        height: 2.15rem;
    }

    .stat-card strong {
        font-size: clamp(1rem, 4.8vw, 1.2rem);
    }

    .stat-card span {
        font-size: 0.84rem;
    }

    .media-card--panorama {
        aspect-ratio: 1 / 1;
        border-radius: 24px;
    }

    .panorama-viewport {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        touch-action: pan-y;
        cursor: grab;
    }

    .panorama-viewport.is-dragging {
        cursor: grabbing;
    }

    .panorama-viewport img {
        width: auto;
        height: 100%;
        max-width: none;
        object-fit: contain;
        will-change: transform;
        user-select: none;
        -webkit-user-drag: none;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(23, 61, 105, 0.06), transparent 72%),
            linear-gradient(rgba(23, 61, 105, 0.04) 1px, transparent 1px);
        background-size: 100% 100%, 100% 58px;
    }

    .content-panel,
    .offer-card,
    .price-card,
    .contact-form,
    .legal-section,
    .footer-col {
        padding: 1.15rem;
    }
}
