/* ============================================================
   COMPTA RESTO — DA Brasserie moderne
   Mobile-first. Self-hosted fonts. Vanilla CSS.
   ============================================================ */

/* ── @font-face ──────────────────────────────────── */
@font-face {
    font-family: 'DM Serif Display';
    src: url('/assets/fonts/dm-serif-display-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'DM Serif Display';
    src: url('/assets/fonts/dm-serif-display-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter v20 is a variable font — single file covers 100-900 */
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter-regular.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url('/assets/fonts/jetbrains-mono-regular.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Tokens ──────────────────────────────────────── */
:root {
    /* Couleurs DA Brasserie moderne */
    --bg:              #f4efe6;
    --bg-alt:          #ece4d4;
    --cream:           #f7f2e8;
    --ink:             #1a1815;
    --ink-2:           #3a342c;
    --muted:           #756c5f;
    --line:            #d9cfba;
    --terracotta:      #c94a36;
    --terracotta-dark: #a83a2a;
    --terracotta-text: #b53c28;  /* Pour petit texte sur fond clair — minimum AA 4.5 vs bg-alt (le plus foncé des 3 fonds clairs) */
    --terracotta-soft: #e89a8b;
    --ocre:            #c08c2e;
    --ocre-soft:       #e8c97a;
    --bordeaux:        #9a3328;  /* Fond sombre pour cta-final / service-card.feat — laisse passer ocre-soft AA */

    /* Mappings pour cohérence */
    --primary:         #c94a36;
    --primary-dark:    #a83a2a;
    --primary-light:   #fce5e0;
    --text:            #1a1815;
    --text-light:      #756c5f;
    --border:          #d9cfba;
    --border-light:    #ece4d4;
    --radius:          8px;
    --radius-lg:       16px;
    --radius-pill:     99px;
    --header-height:   72px;

    /* Typo */
    --serif: "DM Serif Display", Georgia, serif;
    --sans:  "Inter", system-ui, -apple-system, sans-serif;
    --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

    /* Layout */
    --pad: clamp(20px, 5vw, 56px);
    --max-w: 1280px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* Skip to content */
.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--ink); color: var(--cream);
    padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── Helpers ─────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.kicker::before {
    content: ""; width: 24px; height: 1px;
    background: var(--terracotta-text);
}
.kicker.light { color: var(--terracotta-soft); }
.kicker.light::before { background: currentColor; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background-color .2s, color .2s, border-color .2s, transform .15s;
    white-space: nowrap;
    text-align: center;
}
.btn-primary {
    background: var(--terracotta);
    color: #fff;
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background: var(--ink);
    border-color: var(--ink);
}
.btn-ghost {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--cream);
}
.btn-light {
    border-color: var(--cream);
    color: var(--cream);
}
.btn-light:hover {
    background: var(--cream);
    color: var(--ink);
}
.btn-cream {
    background: var(--cream);
    color: var(--terracotta-text);
    border-color: var(--cream);
}
.btn-cream:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.btn-ghost-light {
    background: transparent;
    border-color: rgba(247, 242, 232, .3);
    color: var(--cream);
}
.btn-ghost-light:hover {
    background: rgba(247, 242, 232, .1);
    border-color: var(--cream);
}

/* ── NAV (header) ────────────────────────────────── */
.nav {
    background: var(--ink);
    color: var(--cream);
    border-bottom: 1px solid #2a2622;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 16px var(--pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    flex-shrink: 0;
}
.logo .brand-icon {
    display: block;
    height: 30px;
    width: auto;
    flex-shrink: 0;
}
.logo-word {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}
.logo-mono {
    font-family: var(--mono);
    font-style: normal;
    font-size: 10px;
    letter-spacing: .3em;
    color: var(--cream);
    font-weight: 500;
}
.logo-resto {
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    color: var(--terracotta-soft);
}
.nav-links {
    display: none;
    gap: 28px;
    font-size: 13px;
    font-weight: 500;
}
.nav-links > a,
.nav-links .megamenu-trigger {
    color: rgba(247, 242, 232, .85);
    transition: color .15s;
    padding: 4px 0;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-links .megamenu-trigger:hover,
.nav-links .megamenu-trigger.active { color: var(--terracotta-soft); }

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}
.nav-phone {
    display: none;
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(247, 242, 232, .75);
    white-space: nowrap;
}
.nav-phone:hover { color: var(--cream); }
.nav-btn {
    padding: 9px 16px;
    font-size: 13px;
}
.nav-toggle {
    width: 32px; height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.nav-toggle span {
    width: 22px; height: 1.5px;
    background: var(--cream);
    transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 880px) {
    .nav-links { display: flex; }
    .nav-phone { display: inline-block; }
    .nav-toggle { display: none; }
}

/* ── Mega menu ───────────────────────────────────── */
.has-megamenu {
    position: relative;
    display: inline-flex;
    align-items: center;
}
/* Hover bridge: invisible strip from trigger bottom down to the menu card,
   keeps :hover active across the gap between nav and menu card. */
.has-megamenu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 28px;
    pointer-events: none;
}
.has-megamenu:hover::after,
.has-megamenu:focus-within::after,
.has-megamenu.is-open::after {
    pointer-events: auto;
}
.megamenu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(247, 242, 232, .85);
    transition: color .15s;
    padding: 4px 0;
    cursor: pointer;
}
.megamenu-trigger:hover,
.megamenu-trigger.active,
.has-megamenu:hover .megamenu-trigger,
.has-megamenu:focus-within .megamenu-trigger {
    color: var(--terracotta-soft);
}
.megamenu-chevron {
    color: currentColor;
    opacity: .65;
    transition: transform .25s ease, opacity .15s;
    flex-shrink: 0;
    margin-top: 1px;
}
.has-megamenu:hover .megamenu-chevron,
.has-megamenu:focus-within .megamenu-chevron,
.has-megamenu.is-open .megamenu-chevron {
    transform: rotate(-180deg);
    opacity: 1;
}
.megamenu {
    position: absolute;
    /* Push past the nav (trigger sits roughly mid-nav, ~22px above nav bottom) */
    top: calc(100% + 16px);
    left: 50%;
    margin-top: -6px;
    padding-top: 12px;
    width: min(640px, calc(100vw - 32px));
    transform: translateX(-50%);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, margin-top .2s ease, visibility .2s;
}
.has-megamenu:hover > .megamenu,
.has-megamenu:focus-within > .megamenu,
.has-megamenu.is-open > .megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
}
/* Anchor first mega's menu to its left edge so it doesn't overflow viewport */
.nav-links > .has-megamenu:first-of-type .megamenu {
    left: 0;
    transform: none;
}
.megamenu-grid {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px -16px rgba(26, 24, 21, .35),
                0 4px 12px -4px rgba(26, 24, 21, .1);
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 6px;
}
.megamenu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    color: var(--ink);
    transition: background-color .15s, color .15s;
    text-decoration: none;
    min-width: 0;
}
.megamenu-item:hover,
.megamenu-item:focus-visible {
    background: var(--bg-alt);
    outline: none;
}
.megamenu-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201, 74, 54, .08);
    color: var(--terracotta);
    flex-shrink: 0;
    transition: background-color .15s, color .15s;
}
.megamenu-item-icon svg {
    width: 19px;
    height: 19px;
}
.megamenu-item:hover .megamenu-item-icon,
.megamenu-item:focus-visible .megamenu-item-icon {
    background: var(--terracotta);
    color: var(--cream);
}
.megamenu-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.megamenu-item-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -.005em;
}
.megamenu-item-desc {
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--muted);
    font-weight: 400;
}
.megamenu-item-arrow {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--muted);
    opacity: 0;
    transform: translateX(-4px);
    transition: color .15s, transform .15s, opacity .15s;
    flex-shrink: 0;
    line-height: 1;
}
.megamenu-item:hover .megamenu-item-arrow,
.megamenu-item:focus-visible .megamenu-item-arrow {
    color: var(--terracotta);
    opacity: 1;
    transform: translateX(0);
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 90vw);
    height: 100vh;
    height: 100dvh;
    background: var(--ink);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    padding-top: 72px;
    border-left: 1px solid #2a2622;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { padding: 24px var(--pad); }
.mn-list { list-style: none; display: flex; flex-direction: column; gap: 0; padding: 0; margin: 0; }
.mn-item { border-bottom: 1px solid #2a2622; }
.mn-link,
.mn-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 18px 0;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    color: var(--cream);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    line-height: 1;
    transition: color .15s;
}
.mn-link:hover,
.mn-link.active,
.mn-trigger:hover { color: var(--terracotta-soft); }
.mn-chevron {
    color: rgba(247, 242, 232, .55);
    transition: transform .25s ease, color .15s;
    flex-shrink: 0;
}
.mn-item--mega.is-open .mn-chevron {
    transform: rotate(-180deg);
    color: var(--terracotta-soft);
}

/* Submenu (accordion) — max-height transition for reliable clipping */
.mn-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.mn-item--mega.is-open .mn-submenu {
    max-height: 1500px;
}
.mn-sub-list {
    list-style: none;
    padding: 4px 0 16px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mn-sub-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 4px;
    color: var(--cream);
    text-decoration: none;
    transition: background-color .15s;
    border-radius: 8px;
}
.mn-sub-item:hover,
.mn-sub-item:focus-visible {
    background: rgba(247, 242, 232, .05);
    outline: none;
}
.mn-sub-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(232, 154, 139, .14);
    color: var(--terracotta-soft);
    flex-shrink: 0;
}
.mn-sub-icon svg {
    width: 18px;
    height: 18px;
}
.mn-sub-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.mn-sub-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    color: var(--cream);
}
.mn-sub-desc {
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.4;
    color: rgba(247, 242, 232, .55);
}
.mn-sub-overview {
    display: block;
    margin-top: 4px;
    padding: 10px 4px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terracotta-soft);
    text-decoration: none;
    transition: color .15s;
}
.mn-sub-overview:hover { color: var(--cream); }

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
}
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
@media (min-width: 880px) {
    .mobile-nav, .mobile-nav-overlay { display: none; }
}

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb {
    background: var(--bg);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { color: var(--line); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ── HERO ────────────────────────────────────────── */
.hero {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(40px, 7vw, 96px) var(--pad) clamp(48px, 8vw, 112px);
    position: relative;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: end;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 32px;
    right: var(--pad);
    width: 70%;
    height: 35%;
    background: var(--ocre);
    opacity: .1;
    border-radius: 8px;
    z-index: 0;
}
.hero-text { position: relative; z-index: 1; }
.hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(44px, 9vw, 116px);
    line-height: .96;
    letter-spacing: -.025em;
    margin: 20px 0 0;
    text-wrap: balance;
}
.hero h1 em {
    font-style: italic;
    color: var(--terracotta);
    position: relative;
    display: inline-block;
}
.hero h1 em::after {
    content: "";
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 8%;
    height: .2em;
    background: var(--ocre);
    opacity: .4;
    z-index: -1;
}
.hero-deck {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 480px;
    margin-top: 28px;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 32px;
}
.hero-meta div {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-meta strong {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 36px);
    color: var(--terracotta);
    text-transform: none;
    letter-spacing: -.01em;
    margin-bottom: 2px;
    line-height: 1;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.hero-photo {
    position: relative;
    z-index: 1;
    aspect-ratio: 3 / 2;
    background: var(--bg-alt);
    border-radius: 100px 100px 8px 8px;
    overflow: hidden;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-photo.placeholder {
    background: repeating-linear-gradient(45deg, var(--bg-alt) 0 14px, var(--line) 14px 15px);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-photo .ph-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    background: var(--cream);
    padding: 6px 12px;
    border: 1px solid var(--line);
    color: var(--ink-2);
}

@media (min-width: 880px) {
    .hero-inner {
        grid-template-columns: 6fr 5fr;
    }
    .hero-photo {
        aspect-ratio: 3 / 2;
        border-radius: 140px 140px 8px 8px;
    }
    .hero::after {
        bottom: 0;
        width: 46%;
        height: 55%;
    }
}

/* ── CLIENTS BANNER ──────────────────────────────── */
.clients {
    background: var(--bg-alt);
    color: var(--ink);
    padding: 28px var(--pad);
    overflow: hidden;
    border-block: 1px solid var(--line);
}
.clients-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.clients-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    flex-shrink: 0;
    font-weight: 500;
}

/* Marquee scroller */
.clients-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: clients-scroll 50s linear infinite;
}
.clients-marquee:hover .clients-track,
.clients-marquee:focus-within .clients-track {
    animation-play-state: paused;
}
.clients-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 48px;
}
.clients-item img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .55;
    transition: opacity .25s, filter .25s;
}
.clients-item img:hover {
    filter: grayscale(0);
    opacity: 1;
}
@keyframes clients-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .clients-track { animation: none; }
}

@media (min-width: 880px) {
    .clients-inner {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    .clients-marquee {
        flex: 1;
        min-width: 0;
    }
    .clients-item { height: 56px; }
    .clients-item img { max-height: 56px; }
}

/* ── OUTILS DIGITAUX ─────────────────────────────── */
.tools {
    padding: clamp(56px, 8vw, 96px) var(--pad);
    background: var(--bg);
}
.tools-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.tools-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.tools-head .kicker {
    justify-content: center;
}
.tools-head h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-top: 14px;
    text-wrap: balance;
}
.tools-head h2 em {
    font-style: italic;
    color: var(--terracotta);
}
.tools-head .lede {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-2);
}
.tools-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.tool {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.tool:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -16px rgba(26, 24, 21, .15);
}
.tool-logo {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tool-logo img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}
.tool-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-2);
    margin: 0;
    max-width: 240px;
}
@media (min-width: 720px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ── Section Heads ───────────────────────────────── */
.sec-h {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
    align-items: end;
}
.sec-h h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 5.2vw, 64px);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin: 12px 0 0;
    text-wrap: balance;
}
.sec-h h2 em { font-style: italic; color: var(--terracotta); }
.sec-h .lede {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 480px;
}
@media (min-width: 880px) {
    .sec-h {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        margin-bottom: 56px;
    }
}

/* ── SERVICES GRID ───────────────────────────────── */
.services-section {
    padding: clamp(64px, 10vw, 120px) var(--pad);
    background: var(--bg-alt);
}
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.service-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
    transition: transform .2s, box-shadow .2s;
    color: inherit;
    position: relative;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -16px rgba(26, 24, 21, .18);
}
.service-card.feat {
    background: var(--bordeaux);
    color: #fff;
    border-color: var(--bordeaux);
    min-height: 320px;
}
.service-card .s-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--terracotta-text);
}
.service-card.feat .s-num { color: var(--ocre-soft); }
.service-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -.01em;
}
.service-card.feat h3 { font-size: 34px; }
.service-card h3 em { font-style: italic; }
.service-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-2);
}
.service-card.feat p { color: #fff; }
.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--ink-2);
}
.service-card.feat ul { color: #fff; }
.service-card li {
    padding-left: 14px;
    position: relative;
}
.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 1px;
    background: currentColor;
    opacity: .7;
}
.service-card .arrow {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding-top: 8px;
}
.service-card .arrow span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .6;
    transition: opacity .2s, transform .2s;
    font-size: 14px;
}
.service-card:hover .arrow span {
    opacity: 1;
    transform: rotate(-45deg);
}

@media (min-width: 760px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .service-card { padding: 32px; }
}
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(12, 1fr);
    }
    .service-card.feat { grid-column: span 7; min-height: 340px; padding: 36px; }
    .service-card.s2   { grid-column: span 5; }
    .service-card.s3   { grid-column: span 5; }
    .service-card.s4   { grid-column: span 7; }
    .service-card.s5   { grid-column: span 6; }
    .service-card.s6   { grid-column: span 6; }
    /* Cas 5 cards : la dernière prend toute la largeur */
    .service-card.s5:last-child { grid-column: span 12; }
    .service-card.feat h3 { font-size: 42px; }
    .service-card h3 { font-size: 32px; }
}

/* ── RÉSEAU (pills) ──────────────────────────────── */
.reseau {
    padding: clamp(64px, 10vw, 120px) var(--pad);
    background: var(--ink);
    color: var(--cream);
    text-align: center;
}
.reseau-inner { max-width: 900px; margin: 0 auto; }
.reseau h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -.02em;
    margin: 18px 0 0;
    text-wrap: balance;
}
.reseau h2 em { font-style: italic; color: var(--terracotta-soft); }
.reseau p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(247, 242, 232, .75);
    max-width: 560px;
    margin: 20px auto 32px;
}
.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.pill {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(247, 242, 232, .3);
    font-size: 13px;
    font-family: var(--mono);
    letter-spacing: .04em;
    color: rgba(247, 242, 232, .8);
    transition: background-color .2s, color .2s, border-color .2s;
    cursor: default;
}
.pill:hover {
    background: rgba(247, 242, 232, .08);
    color: var(--cream);
}
.pill.on {
    background: var(--ocre);
    border-color: var(--ocre);
    color: var(--ink);
}

/* ── MÉTHODE ────────────────────────────────────── */
.methode {
    padding: clamp(64px, 10vw, 120px) var(--pad);
}
.methode-inner { max-width: var(--max-w); margin: 0 auto; }
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.step {
    border-top: 1.5px solid var(--ink);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.step .num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 42px;
    line-height: 1;
    color: var(--terracotta);
    font-weight: 400;
}
.step h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.01em;
}
.step p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-2);
}
@media (min-width: 640px) {
    .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .steps { grid-template-columns: repeat(4, 1fr); }
    .step .num { font-size: 48px; }
    .step h3 { font-size: 24px; }
}

/* ── TESTIMONIALS ───────────────────────────────── */
.testi {
    padding: clamp(64px, 10vw, 120px) var(--pad);
    background: var(--bg-alt);
}
.testi-inner { max-width: var(--max-w); margin: 0 auto; }
.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.testi-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.testi-card.big blockquote {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -.01em;
}
.testi-card.big blockquote em,
.testi-card.small blockquote em {
    color: var(--terracotta-text);
    font-style: italic;
}
.quote-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 56px;
    line-height: .5;
    color: var(--terracotta);
    height: 22px;
}
.testi-card.small { padding: 24px; }
.testi-card.small blockquote {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
}
.testi-card.small .quote-mark {
    font-size: 36px;
    height: 14px;
}

/* "Lire la suite" inline link à la fin du blockquote tronqué */
.testi-readmore {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .15s, gap .15s;
    white-space: nowrap;
    vertical-align: baseline;
}
.testi-readmore:hover { color: var(--terracotta); gap: 6px; }
.testi-readmore svg { display: inline-block; vertical-align: -1px; }
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-2);
    flex-shrink: 0;
}
.testi-author .name { font-weight: 600; font-size: 14px; }
.testi-author .resto {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-top: 2px;
}
.testi-stars {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-left: auto;
}
.testi-stars svg { display: block; }
img.avatar {
    object-fit: cover;
    background: var(--bg-alt);
}

/* Google badge — résumé note + nb d'avis (en remplacement du lede) */
.testi-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.g-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 99px;
    font-family: var(--sans);
    align-self: flex-start;
}
.g-badge svg { display: block; flex-shrink: 0; }
.g-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.g-badge-rating {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    color: var(--ink);
    line-height: 1;
}
.g-badge-stars {
    display: inline-flex;
    gap: 1px;
}
.g-badge-count {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-2);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .15s;
}
.g-badge-count:hover { color: var(--terracotta-text); }

/* "Avis vérifié" badge à l'intérieur de chaque carte */
.testi-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.g-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 99px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-2);
    flex-shrink: 0;
}
.g-verified svg { display: block; }

/* CTA "Voir tous les avis Google" */
.testi-cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(32px, 5vw, 56px);
}

@media (min-width: 640px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testi-card.big { grid-column: span 2; }
}
@media (min-width: 1024px) {
    .testi-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 1fr;
        gap: 24px;
    }
    .testi-card.big {
        grid-column: span 2;
        grid-row: span 2;
        padding: 36px;
    }
    .testi-card.big blockquote { font-size: 26px; }
    .testi-card.big .quote-mark { font-size: 64px; height: 24px; }
    .testi-card.small { padding: 28px; }
}

/* ── ÉQUIPE ─────────────────────────────────────── */
.equipe {
    padding: clamp(64px, 10vw, 120px) var(--pad);
}
.equipe-inner { max-width: var(--max-w); margin: 0 auto; }
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.member { display: flex; flex-direction: column; gap: 12px; }
.member .portrait {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    background: var(--bg-alt);
    overflow: hidden;
    position: relative;
}
.member .portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.member .portrait.placeholder {
    background: repeating-linear-gradient(45deg, var(--bg-alt) 0 14px, var(--line) 14px 15px);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.member .portrait .ph-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .08em;
    background: var(--cream);
    padding: 4px 10px;
    color: var(--ink-2);
    border: 1px solid var(--line);
}
.member .portrait .init-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 36px;
    color: var(--terracotta);
}
.member .role {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    font-weight: 500;
}
.member h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -.01em;
}
.member p { font-size: 14px; line-height: 1.5; color: var(--ink-2); }
@media (min-width: 640px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .team-grid { grid-template-columns: repeat(4, 1fr); }
    .member h3 { font-size: 24px; }
}

/* ── FAQ ─────────────────────────────────────────── */
.faq {
    padding: clamp(64px, 10vw, 120px) var(--pad);
    background: var(--bg);
}
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.faq-item {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 8px 24px -12px rgba(26, 24, 21, .1); }
.faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 24px;
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.3;
}
.faq-q .toggle {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    transition: transform .25s, background-color .2s;
    font-size: 18px;
    line-height: 1;
}
.faq-item.open .faq-q .toggle {
    transform: rotate(45deg);
    background: var(--terracotta);
    color: #fff;
    border-color: var(--terracotta);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 24px;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.65;
}
.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 24px 24px;
}

/* ── ZONES (SEO local) ───────────────────────────── */
.zones-sec {
    padding: clamp(64px, 10vw, 120px) var(--pad);
    background: var(--bg-alt);
}
.zones-inner { max-width: var(--max-w); margin: 0 auto; }
.zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 32px;
}
.zone-link {
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--ink-2);
    transition: background-color .2s, color .2s, border-color .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zone-link::before {
    content: "→";
    color: var(--terracotta);
    transition: transform .2s;
}
.zone-link:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.zone-link:hover::before {
    color: var(--terracotta-soft);
    transform: translateX(2px);
}
@media (min-width: 640px) {
    .zones-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 880px) {
    .zones-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── CTA finale ──────────────────────────────────── */
.cta-final {
    padding: clamp(64px, 10vw, 120px) var(--pad);
    background: var(--bordeaux);
    color: #fff;
}
.cta-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.cta-final h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -.025em;
    text-wrap: balance;
}
.cta-final h2 em {
    font-style: italic;
    color: var(--ocre-soft);
}
.cta-final p {
    margin-top: 20px;
    font-size: 17px;
    color: #fff;
    max-width: 480px;
    line-height: 1.55;
}
.cta-card {
    background: rgba(26, 24, 21, .35);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.cta-row .k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}
.cta-row .v {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    color: #fff;
}
.cta-row .v a { color: #fff; }
.cta-row.no-border { border-bottom: none; padding-bottom: 0; }
@media (min-width: 880px) {
    .cta-inner {
        grid-template-columns: 1.4fr 1fr;
        gap: 56px;
    }
    .cta-card { padding: 32px; }
}

/* ── FOOTER ─────────────────────────────────────── */
.site-footer {
    background: var(--ink);
    color: rgba(247, 242, 232, .75);
    padding: 56px var(--pad) 24px;
}
.foot-inner { max-width: var(--max-w); margin: 0 auto; }
.foot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a2622;
}
.foot-about p {
    font-size: 14px;
    color: rgba(247, 242, 232, .65);
    max-width: 320px;
    line-height: 1.55;
    margin-top: 16px;
}
.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 12px;
    color: rgba(247, 242, 232, .7);
}
.foot-contact a { color: rgba(247, 242, 232, .85); }
.foot-contact a:hover { color: var(--terracotta-soft); }

.foot-col h3 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(247, 242, 232, .7);
    font-weight: 500;
    margin-bottom: 16px;
}
.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}
.foot-col a {
    color: rgba(247, 242, 232, .78);
    transition: color .15s;
}
.foot-col a:hover { color: var(--terracotta-soft); }
.foot-bottom {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(247, 242, 232, .55);
}
.foot-bottom a { color: rgba(247, 242, 232, .65); }
.foot-bottom a:hover { color: var(--terracotta-soft); }
.foot-legal { display: flex; gap: 8px; flex-wrap: wrap; }
.foot-credit {
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, .65);
    font-family: var(--mono);
}
.foot-credit a {
    color: rgba(255, 255, 255, .9);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.foot-credit a:hover { color: var(--terracotta-soft); }

@media (min-width: 640px) {
    .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 880px) {
    .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
    .foot-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── Mobile sticky CTA ───────────────────────────── */
.mobile-cta-sticky {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 99;
    background: var(--terracotta);
    color: #fff;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .4);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    /* Caché par défaut, révélé après le hero */
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease;
}
.mobile-cta-sticky.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.mobile-cta-sticky:hover {
    background: var(--ink);
}
@media (min-width: 880px) {
    .mobile-cta-sticky { display: none; }
}

/* ── Animations ─────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* No-JS fallback */
.no-js .fade-in {
    opacity: 1;
    transform: none;
}

/* ── Form ───────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.form-group label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(201, 74, 54, .15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* RGPD checkbox */
.rgpd-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 14px;
}
.rgpd-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}
.rgpd-check {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border: 1.5px solid var(--line);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s, border-color .2s;
    margin-top: 2px;
    background: transparent;
}
.rgpd-check svg {
    opacity: 0;
    transform: scale(.5);
    transition: opacity .2s, transform .2s;
    color: #fff;
}
.rgpd-checkbox:hover .rgpd-check { border-color: var(--terracotta); }
.rgpd-checkbox input:checked + .rgpd-check {
    background: var(--terracotta);
    border-color: var(--terracotta);
}
.rgpd-checkbox input:checked + .rgpd-check svg {
    opacity: 1;
    transform: scale(1);
}
.rgpd-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}
.rgpd-text a {
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Article / static pages content ─────────────── */
.page-section {
    padding: clamp(48px, 8vw, 96px) var(--pad);
}
.page-content {
    max-width: 760px;
    margin: 0 auto;
}
.page-content h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}
.page-content h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(26px, 3.5vw, 36px);
    margin: 36px 0 14px;
    line-height: 1.15;
}
.page-content h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    margin: 24px 0 10px;
}
.page-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--ink-2);
}
.page-content ul, .page-content ol {
    margin: 16px 0 16px 20px;
    padding-left: 0;
}
.page-content li { margin-bottom: 8px; line-height: 1.6; color: var(--ink-2); }
.page-content a {
    color: var(--terracotta);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

/* ── BLOG INDEX (listing) ───────────────────────── */
.blog-list-head {
    padding: clamp(56px, 8vw, 96px) var(--pad) clamp(32px, 5vw, 56px);
    background: var(--bg);
    text-align: center;
}
.blog-list-head .container { max-width: 720px; margin: 0 auto; }
.blog-list-head .kicker { justify-content: center; }
.blog-list-head h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -.025em;
    margin: 18px 0 0;
    text-wrap: balance;
}
.blog-list-head h1 em { font-style: italic; color: var(--terracotta); }
.blog-list-head .lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-2);
}
.blog-list {
    padding: clamp(32px, 5vw, 64px) var(--pad) clamp(64px, 10vw, 120px);
    background: var(--bg);
}
.blog-list .container { max-width: var(--max-w); margin: 0 auto; }
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.blog-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -16px rgba(26, 24, 21, .18);
}
.blog-card-img {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--bg-alt);
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blog-card-date {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--terracotta-text);
}
.blog-card-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0;
}
.blog-card-title a { color: var(--ink); transition: color .15s; }
.blog-card-title a:hover { color: var(--terracotta-text); }
.blog-card-excerpt {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0;
}
.blog-card-link {
    margin-top: auto;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    align-self: flex-start;
    padding-top: 4px;
}
.blog-card-link:hover { color: var(--terracotta); }
.blog-empty {
    padding: 64px 0;
    text-align: center;
    color: var(--muted);
}
.blog-empty p { margin-bottom: 24px; }
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: clamp(40px, 6vw, 64px);
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 13px;
}
.blog-pagination a,
.blog-pagination span {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink-2);
    background: var(--cream);
    transition: background-color .15s, color .15s, border-color .15s;
}
.blog-pagination a:hover {
    background: var(--bg-alt);
    color: var(--terracotta-text);
    border-color: var(--terracotta-text);
}
.blog-pagination .current {
    background: var(--terracotta);
    color: #fff;
    border-color: var(--terracotta);
}
@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SERVICE PAGES — Hero compact, scope, spotlight, intro
   Additive — n'affecte pas la maquette home validée
   ============================================================ */

/* ── Service Hero (compact, text-first, no big photo) ────── */
.service-hero {
    position: relative;
    padding: clamp(40px, 7vw, 96px) var(--pad) clamp(40px, 7vw, 80px);
    background: var(--bg);
    overflow: hidden;
}
.service-hero::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -8%;
    width: 60%;
    height: 80%;
    background: var(--ocre);
    opacity: .07;
    border-radius: 100% 100% 12px 12px;
    z-index: 0;
}
.service-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
    position: relative;
    z-index: 1;
}
.service-hero-text { position: relative; }
.service-hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(38px, 6.6vw, 80px);
    line-height: .98;
    letter-spacing: -.025em;
    margin: 18px 0 0;
    text-wrap: balance;
}
.service-hero h1 em {
    font-style: italic;
    color: var(--terracotta);
    /* Surlignage ocre qui épouse le texte ligne par ligne (pas de débordement sur em multi-lignes) */
    background-image: linear-gradient(transparent 70%, rgba(192, 140, 46, .35) 70%, rgba(192, 140, 46, .35) 88%, transparent 88%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.service-hero-deck {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 520px;
    margin-top: 24px;
}
.service-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 28px;
    margin-top: 28px;
}
.service-hero-meta div {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}
.service-hero-meta strong {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(26px, 3.6vw, 34px);
    color: var(--terracotta);
    text-transform: none;
    letter-spacing: -.01em;
    margin-bottom: 2px;
    line-height: 1;
}
.service-hero-ctas {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Aside panel (sidebar card next to hero text) */
.service-hero-aside {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.service-hero-aside .aside-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    font-weight: 500;
}
.service-hero-aside .aside-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--ink);
    margin: 0;
}
.service-hero-aside ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}
.service-hero-aside li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
}
.service-hero-aside li::before {
    content: "";
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 3px;
    background: var(--terracotta);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}
.service-hero-aside .aside-foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-hero-aside .aside-foot strong {
    color: var(--terracotta-text);
    font-weight: 600;
}

@media (min-width: 880px) {
    .service-hero-inner {
        grid-template-columns: 7fr 4fr;
        gap: 56px;
        align-items: center;
    }
    .service-hero-aside { padding: 32px; }
}

/* ── Intro / constat (texte centré sec. claire) ───────── */
.intro-sec {
    padding: clamp(56px, 8vw, 100px) var(--pad);
    background: var(--bg);
    border-block: 1px solid var(--border-light);
}
.intro-inner {
    max-width: 820px;
    margin: 0 auto;
}
.intro-inner .kicker { justify-content: flex-start; }
.intro-inner h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 14px 0 22px;
    text-wrap: balance;
}
.intro-inner h2 em {
    font-style: italic;
    color: var(--terracotta);
}
.intro-inner p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-2);
    margin-bottom: 16px;
}
.intro-inner p:last-child { margin-bottom: 0; }
.intro-inner strong { color: var(--ink); font-weight: 600; }

/* ── Scope / Périmètre (grille numérotée fond cream) ──── */
.scope {
    padding: clamp(64px, 10vw, 120px) var(--pad);
    background: var(--bg-alt);
}
.scope-inner { max-width: var(--max-w); margin: 0 auto; }
.scope-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
}
.scope-item {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 26px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.scope-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -16px rgba(26, 24, 21, .15);
    border-color: var(--terracotta-soft);
}
.scope-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--terracotta-text);
    padding: 6px 11px;
    border: 1px solid var(--terracotta-soft);
    border-radius: 99px;
    font-weight: 500;
    flex-shrink: 0;
    align-self: start;
    line-height: 1;
}
.scope-item h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 8px;
}
.scope-item h3 em { font-style: italic; color: var(--terracotta); }
.scope-item p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0;
}
@media (min-width: 880px) {
    .scope-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .scope-item { padding: 28px; }
}

/* ── Spotlight témoignage focalisé ────────────────────── */
.spotlight {
    padding: clamp(56px, 8vw, 100px) var(--pad);
    background: var(--bg);
}
.spotlight-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.spotlight .quote-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 80px;
    color: var(--terracotta);
    line-height: .6;
    margin-bottom: 8px;
    user-select: none;
}
.spotlight blockquote {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.25;
    letter-spacing: -.015em;
    text-wrap: balance;
    margin: 0;
    color: var(--ink);
}
.spotlight blockquote em {
    font-style: italic;
    color: var(--terracotta);
}
.spotlight-author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.spotlight-author .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bordeaux);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    flex-shrink: 0;
}
.spotlight-author .name {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    text-align: left;
    line-height: 1.3;
}
.spotlight-author .resto {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--muted);
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

/* ── Cross-sell (3 cards services connexes, fond bg) ─── */
.cross {
    padding: clamp(56px, 8vw, 100px) var(--pad);
    background: var(--bg);
}
.cross-inner { max-width: var(--max-w); margin: 0 auto; }
.cross-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}
@media (min-width: 760px) {
    .cross-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ── Services Index — listing avec services-grid réutilisée ── */
.services-index-head {
    padding: clamp(48px, 8vw, 96px) var(--pad) clamp(24px, 4vw, 40px);
    background: var(--bg);
}
.services-index-head-inner { max-width: var(--max-w); margin: 0 auto; }
.services-index-head h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(44px, 7vw, 96px);
    line-height: .98;
    letter-spacing: -.025em;
    margin: 18px 0 0;
    text-wrap: balance;
    max-width: 14ch;
}
.services-index-head h1 em {
    font-style: italic;
    color: var(--terracotta);
}
.services-index-head .lede {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 580px;
}

/* ============================================================
   CONTACT PAGE — Formulaire conversion + Map
   ============================================================ */

/* ── Hero aside — contact infos avec icônes ──────────── */
.contact-card { gap: 22px; }
.contact-card .aside-title { font-size: 22px; }
.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-list li::before { display: none !important; content: none !important; }
.contact-info-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
}
.contact-info-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(201, 74, 54, .08);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color .2s, transform .2s;
}
.contact-info-icon svg { display: block; }
.contact-info-item:hover .contact-info-icon {
    background: var(--terracotta);
    color: #fff;
    transform: scale(1.05);
}
.contact-info-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.contact-info-k {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}
.contact-info-v {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    word-break: break-word;
}
a.contact-info-v { color: var(--ink); transition: color .15s; }
a.contact-info-v:hover { color: var(--terracotta); }

/* ── Main 2-col layout (form + map) ──────────────────── */
.contact-main {
    padding: clamp(56px, 8vw, 100px) var(--pad);
    background: var(--bg);
}
.contact-main-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
@media (min-width: 960px) {
    .contact-main-inner {
        grid-template-columns: 1.4fr 1fr;
        gap: 48px;
    }
}

/* ── Form column ──────────────────────────────────────── */
.contact-form-col {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 44px);
}
.contact-form-head {
    margin-bottom: 28px;
}
.contact-form-head h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.05;
    letter-spacing: -.015em;
    margin: 12px 0 14px;
}
.contact-form-head h2 em { font-style: italic; color: var(--terracotta); }
.contact-form-lede {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 18px;
}
.contact-form-lede strong { color: var(--ink); font-weight: 600; }
.contact-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}
.contact-trust .g-badge {
    flex-shrink: 0;
}
.contact-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(201, 74, 54, .08);
    border: 1px solid var(--terracotta-soft);
    color: var(--terracotta-text);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    font-weight: 500;
}

/* ── Form fields ──────────────────────────────────────── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 500;
}
.form-field .req { color: var(--terracotta); }
.form-field .hint {
    color: var(--muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
    font-family: var(--sans);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.4;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
    box-sizing: border-box;
}
.form-field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--sans);
}
.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='%23756c5f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M3 5l3 3 3-3'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 36px;
    cursor: pointer;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(201, 74, 54, .15);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--terracotta);
    background: rgba(201, 74, 54, .03);
}
.form-err {
    font-size: 12px;
    color: var(--terracotta);
    font-weight: 500;
    line-height: 1.3;
}
.form-error-banner {
    background: rgba(201, 74, 54, .08);
    border: 1px solid var(--terracotta-soft);
    color: var(--terracotta-text);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* ── RGPD checkbox ────────────────────────────────────── */
.form-rgpd label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.5;
    color: var(--ink-2);
    font-weight: 400;
}
.form-rgpd input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: 2px;
    accent-color: var(--terracotta);
    cursor: pointer;
    flex-shrink: 0;
}
.form-rgpd a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
.form-rgpd.has-error label { color: var(--terracotta); }

/* ── Submit & foot ────────────────────────────────────── */
.contact-submit {
    align-self: flex-start;
    margin-top: 8px;
    padding: 16px 32px;
    font-size: 15px;
}
.contact-form-foot {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Success state ────────────────────────────────────── */
.contact-success {
    text-align: center;
    padding: clamp(24px, 4vw, 48px) 0;
}
.contact-success-icon {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--terracotta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-success h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 44px);
    line-height: 1;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}
.contact-success p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 480px;
    margin: 0 auto 28px;
}
.contact-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ── Map column ───────────────────────────────────────── */
.contact-map-col { position: relative; }
.contact-map-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + 16px);
}
.contact-map-header {
    padding: 24px 28px 18px;
    border-bottom: 1px solid var(--line);
}
.contact-map-header h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.01em;
    margin: 10px 0 0;
}
.contact-map-header h3 strong {
    color: var(--terracotta);
    font-style: italic;
    font-weight: 400;
}
.contact-map-embed {
    width: 100%;
    background: var(--bg-alt);
}
.contact-map-info {
    padding: 18px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--line);
}
.contact-map-info > div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.4;
}
.contact-map-info .map-k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}
.contact-map-link {
    display: block;
    text-align: center;
    padding: 14px 16px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    font-weight: 500;
    transition: background-color .15s, color .15s;
}
.contact-map-link:hover {
    background: var(--terracotta);
    color: #fff;
}

/* ── Cabinet — showcase photo bureaux ─────────────────── */
.cabinet-showcase {
    padding: clamp(40px, 6vw, 72px) var(--pad) 0;
    background: var(--bg);
}
.cabinet-showcase-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.cabinet-showcase-inner::after {
    content: "";
    position: absolute;
    inset: auto -24px -24px auto;
    width: 55%;
    height: 60%;
    background: var(--ocre);
    opacity: .1;
    border-radius: 8px;
    z-index: 0;
}
.cabinet-photo {
    margin: 0;
    position: relative;
    z-index: 1;
}
.cabinet-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 120px 120px 8px 8px;
    border: 1px solid var(--line);
}
.cabinet-photo figcaption {
    margin-top: 16px;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}
@media (min-width: 760px) {
    .cabinet-photo img { border-radius: 160px 160px 8px 8px; }
}

/* ── Map embed gated (consentement cookies) ───────────── */
.map-embed {
    min-height: 320px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-embed iframe {
    width: 100%;
    height: 320px;
    display: block;
    border: 0;
    align-self: stretch;
}
.map-consent {
    text-align: center;
    padding: 28px 24px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--ink-2);
}
.map-consent svg { color: var(--terracotta); opacity: .8; }
.map-consent p {
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}
.map-consent .btn { margin-top: 4px; }
.map-consent-link {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--terracotta-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.map-consent-link:hover { color: var(--terracotta); }

/* ── Bannière consentement cookies ────────────────────── */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: var(--ink);
    color: var(--cream);
    border-top: 1px solid #2a2622;
    padding: 16px var(--pad);
    box-shadow: 0 -8px 32px -16px rgba(0,0,0,.5);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}
.cookie-banner-text {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(247, 242, 232, .85);
    margin: 0;
}
.cookie-banner-text strong { color: var(--cream); font-weight: 600; }
.cookie-banner-text a {
    color: var(--terracotta-soft);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner-actions .btn { padding: 10px 22px; }
@media (min-width: 760px) {
    .cookie-banner-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
    }
    .cookie-banner-text { max-width: 70ch; }
}

/* ============================================================
   SPÉCIALITÉS — Grid catalogue + cards
   ============================================================ */
.specialites-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
}
@media (min-width: 640px) {
    .specialites-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1024px) {
    .specialites-grid { grid-template-columns: repeat(4, 1fr); }
}
.spec-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: inherit;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
    min-height: 220px;
}
.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -16px rgba(26, 24, 21, .18);
    border-color: var(--terracotta-soft);
}
.spec-card-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(201, 74, 54, .08);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s, color .2s;
}
.spec-card:hover .spec-card-icon {
    background: var(--terracotta);
    color: #fff;
}
.spec-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0;
}
.spec-card h3 em { font-style: italic; color: var(--terracotta); }
.spec-card p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink-2);
    margin: 0;
    flex: 1;
}
.spec-card-arrow {
    margin-top: auto;
    align-self: flex-end;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid currentColor;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .6;
    transition: opacity .2s, transform .2s, color .2s;
    font-family: var(--mono);
    font-size: 14px;
}
.spec-card:hover .spec-card-arrow {
    opacity: 1;
    color: var(--terracotta);
    transform: rotate(-45deg);
}

/* ── Specialités Index head ──────────────────────────── */
.specialites-index-head {
    padding: clamp(48px, 8vw, 96px) var(--pad) clamp(24px, 4vw, 40px);
    background: var(--bg);
}
.specialites-index-head-inner { max-width: var(--max-w); margin: 0 auto; }
.specialites-index-head h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(44px, 7vw, 96px);
    line-height: .98;
    letter-spacing: -.025em;
    margin: 18px 0 0;
    text-wrap: balance;
    max-width: 14ch;
}
.specialites-index-head h1 em { font-style: italic; color: var(--terracotta); }
.specialites-index-head .lede {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 580px;
}
