/* Ins-mark — refonte 2026
   Fichier autonome, chargé après style.css.
   style.css reste intact pour les pages légales. */

:root {
    --ink: #2A1B17;
    --ink-2: #3E2723;
    --brown: #5D4037;
    --brown-light: #8D6E63;
    --beige: #D7CCC8;
    --beige-light: #EFEBE9;
    --gold: #C9A961;
    --gold-light: #E0C99A;
    --gold-dim: rgba(201, 169, 97, 0.12);
    --cream: #FAF8F5;
    --line: rgba(62, 39, 35, 0.12);
    --r: 4px;
    --shadow: 0 18px 50px rgba(42, 27, 23, 0.14);
    --shadow-sm: 0 6px 20px rgba(42, 27, 23, 0.08);
    --maxw: 1180px;
}

body {
    background: var(--cream);
    color: var(--ink-2);
    font-family: var(--font-secondary);
    line-height: 1.65;
}

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.wrap-narrow {
    max-width: 860px;
}

/* ---------- En-tête ---------- */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-container {
    max-width: var(--maxw);
    padding: 12px 24px;
    gap: 20px;
}

.logo-text {
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    gap: 26px;
    margin-left: auto;
}

.site-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
    border-bottom-color: var(--gold);
}

.header-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.notice-badge {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--brown);
    background: var(--gold-dim);
    border: 1px solid rgba(201, 169, 97, 0.4);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.domain-name {
    font-size: 0.78rem;
    color: var(--brown-light);
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    font-size: 1.3rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

/* ---------- Sections ---------- */

.sect {
    padding: clamp(48px, 7vw, 88px) 0;
}

.sect-alt {
    background: var(--beige-light);
}

.sect-dark {
    background: var(--ink);
    color: var(--cream);
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.sect h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    line-height: 1.18;
    color: var(--ink);
    margin-bottom: 16px;
}

.sect-dark h2 {
    color: var(--cream);
}

.sect-lead {
    color: var(--brown);
    font-size: 1.02rem;
    max-width: 62ch;
}

.sect-dark .sect-lead {
    color: rgba(250, 248, 245, 0.78);
}

.sect-head {
    margin-bottom: 40px;
}

.sect-head-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.sect-head-center .sect-lead {
    margin: 0 auto;
}

/* ---------- Boutons ---------- */

.b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: var(--r);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.b-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--ink);
}

.b-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(201, 169, 97, 0.38);
}

.b-outline {
    background: transparent;
    border-color: rgba(250, 248, 245, 0.45);
    color: var(--cream);
}

.b-outline:hover {
    background: rgba(250, 248, 245, 0.1);
}

.b-dark {
    background: var(--ink);
    color: var(--cream);
}

.b-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.b-full {
    width: 100%;
}

/* ---------- Héros ---------- */

.hero-x {
    position: relative;
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
}

.hero-x-media {
    position: absolute;
    inset: 0;
}

.hero-x-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.hero-x-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(42, 27, 23, 0.94) 0%, rgba(42, 27, 23, 0.72) 45%, rgba(42, 27, 23, 0.42) 100%);
}

.hero-x-inner {
    position: relative;
    z-index: 2;
    padding: clamp(56px, 9vw, 116px) 0;
}

.hero-x h1 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.12;
    color: var(--cream);
    margin-bottom: 20px;
    max-width: 17ch;
}

.hero-x h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-x-lead {
    font-size: 1.06rem;
    line-height: 1.75;
    color: rgba(250, 248, 245, 0.84);
    max-width: 56ch;
    margin-bottom: 32px;
}

.hero-x-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-x-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(250, 248, 245, 0.16);
}

.hero-x-fact strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.7rem;
    color: var(--gold-light);
    line-height: 1.1;
}

.hero-x-fact span {
    font-size: 0.82rem;
    color: rgba(250, 248, 245, 0.68);
}

/* ---------- Flotte ---------- */

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

.car {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 24px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.car:hover {
    border-color: rgba(201, 169, 97, 0.6);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.car-name {
    font-family: var(--font-primary);
    font-size: 1.12rem;
    color: var(--ink);
    margin-bottom: 5px;
}

.car-seg {
    font-size: 0.82rem;
    color: var(--brown-light);
}

.car-badge {
    flex-shrink: 0;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
    background: var(--gold-dim);
    border: 1px solid rgba(201, 169, 97, 0.35);
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
}

.fleet-note {
    margin-top: 22px;
    font-size: 0.88rem;
    color: var(--brown-light);
}

/* ---------- Étapes ---------- */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: st;
}

.step {
    counter-increment: st;
    position: relative;
    padding-top: 52px;
}

.step::before {
    content: counter(st, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-primary);
    font-size: 1.9rem;
    color: var(--gold);
    line-height: 1;
}

.step::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.step h3 {
    font-family: var(--font-primary);
    font-size: 1.08rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.step p {
    font-size: 0.93rem;
    color: var(--brown);
    line-height: 1.7;
}

/* ---------- Inclus / non inclus ---------- */

.incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.incl {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px 28px 30px;
}

.incl h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.incl ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.incl li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--brown);
}

.incl li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.85rem;
}

.incl-yes li i {
    color: #2e7d32;
}

.incl-no li i {
    color: var(--brown-light);
}

/* ---------- Conditions ---------- */

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

.cond {
    background: rgba(250, 248, 245, 0.05);
    border: 1px solid rgba(250, 248, 245, 0.14);
    border-radius: var(--r);
    padding: 24px;
}

.cond h3 {
    font-family: var(--font-primary);
    font-size: 1.02rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.cond p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.76);
}

/* ---------- Split image/texte ---------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.split-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    display: block;
}

.split-media figcaption {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--brown-light);
    border-left: 2px solid var(--gold);
    padding-left: 12px;
}

.split-body p {
    color: var(--brown);
    margin-bottom: 14px;
    line-height: 1.78;
}

.tick {
    list-style: none;
    display: grid;
    gap: 11px;
    margin-top: 20px;
}

.tick li {
    position: relative;
    padding-left: 28px;
    color: var(--brown);
    font-size: 0.95rem;
    line-height: 1.65;
}

.tick li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--gold);
    font-size: 0.82rem;
}

/* ---------- FAQ ---------- */

.faq {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.04rem;
    color: var(--ink);
    padding: 20px 0;
}

.faq-q i {
    color: var(--gold);
    font-size: 0.85rem;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-a p {
    padding: 0 0 20px;
    color: var(--brown);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ---------- Formulaire ---------- */

.form-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: clamp(26px, 4vw, 42px);
    box-shadow: var(--shadow-sm);
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.f-group {
    margin-bottom: 18px;
}

.f-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
}

.f-group input,
.f-group select,
.f-group textarea {
    width: 100%;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 13px 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-dim);
}

.f-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 22px 0;
}

.f-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--gold);
}

.f-check label {
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--brown);
    font-weight: 400;
}

.f-check a {
    color: var(--brown);
    text-decoration: underline;
}

.f-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--brown-light);
    text-align: center;
}

/* ---------- Pied de page ---------- */

.footer {
    background: var(--ink);
    color: rgba(250, 248, 245, 0.7);
    padding: 48px 0 28px;
}

.footer a {
    color: rgba(250, 248, 245, 0.7);
}

.footer a:hover {
    color: var(--gold-light);
}

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

.footer-compact {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(250, 248, 245, 0.14);
}

.footer-tagline {
    margin-top: 10px;
    font-size: 0.86rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.88rem;
}

.footer-contact {
    font-size: 0.86rem;
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 22px;
}

.disclaimer-text {
    font-size: 0.78rem;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.55);
    margin-bottom: 14px;
}

.copyright {
    font-size: 0.82rem;
    color: rgba(250, 248, 245, 0.6);
}

/* ---------- Blog ---------- */

.blog-hero {
    background: var(--beige-light);
    border-bottom: 1px solid var(--line);
    padding: clamp(40px, 6vw, 68px) 0;
}

.blog-hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--ink);
    margin-bottom: 14px;
    max-width: 20ch;
}

.blog-hero p {
    color: var(--brown);
    max-width: 62ch;
    line-height: 1.75;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.post {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 169, 97, 0.5);
}

.post-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--beige-light);
    position: relative;
}

.post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.post:hover .post-media img {
    transform: scale(1.04);
}

.post-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 6px 12px;
    border-radius: 999px;
}

.post-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--brown-light);
    margin-bottom: 11px;
}

.post-meta i {
    color: var(--gold);
    margin-right: 5px;
}

.post h2 {
    font-family: var(--font-primary);
    font-size: 1.18rem;
    line-height: 1.28;
    color: var(--ink);
    margin-bottom: 11px;
}

.post-exc {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--brown);
    margin-bottom: 20px;
    flex: 1;
}

.post-more {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--brown);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post-more i {
    color: var(--gold);
    transition: transform 0.25s;
}

.post:hover .post-more i {
    transform: translateX(4px);
}

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

.art-hero {
    background: var(--beige-light);
    border-bottom: 1px solid var(--line);
    padding: clamp(26px, 4vw, 44px) 0;
}

.crumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--brown-light);
    margin-bottom: 18px;
}

.crumb a {
    color: var(--brown-light);
    text-decoration: none;
}

.crumb a:hover {
    color: var(--gold);
}

.art-hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    line-height: 1.18;
    color: var(--ink);
    margin: 10px 0 18px;
}

.art-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.83rem;
    color: var(--brown-light);
}

.art-meta i {
    color: var(--gold);
    margin-right: 6px;
}

.art-main {
    padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 6vw, 76px);
}

.art-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    display: block;
}

.art-cover figcaption {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--brown-light);
    border-left: 2px solid var(--gold);
    padding-left: 12px;
    margin-bottom: 32px;
}

.art-body {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: clamp(24px, 4vw, 44px);
}

.art-lead {
    font-family: var(--font-primary);
    font-size: 1.14rem;
    line-height: 1.7;
    color: var(--ink);
    padding-left: 18px;
    border-left: 3px solid var(--gold);
    margin-bottom: 30px;
}

.art-body h2 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--ink);
    margin: 34px 0 14px;
}

.art-body h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--ink);
    margin: 24px 0 10px;
}

.art-body p {
    color: var(--brown);
    line-height: 1.8;
    margin-bottom: 15px;
}

.art-body strong {
    color: var(--ink);
}

.art-body ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 14px 0 22px;
}

.art-body ul li {
    position: relative;
    padding-left: 24px;
    color: var(--brown);
    line-height: 1.7;
}

.art-body ul li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 11px;
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
}

.art-body ol {
    list-style: none;
    counter-reset: an;
    display: grid;
    gap: 14px;
    margin: 14px 0 22px;
}

.art-body ol li {
    counter-increment: an;
    position: relative;
    padding-left: 42px;
    color: var(--brown);
    line-height: 1.7;
    min-height: 28px;
}

.art-body ol li::before {
    content: counter(an, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    color: var(--gold);
}

.note {
    display: flex;
    gap: 14px;
    background: var(--beige-light);
    border-left: 3px solid var(--gold);
    border-radius: var(--r);
    padding: 18px 20px;
    margin: 26px 0;
}

.note i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.note p {
    margin: 0;
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.72;
}

.art-table-wrap {
    overflow-x: auto;
    margin: 20px 0 26px;
    border: 1px solid var(--line);
    border-radius: var(--r);
}

.art-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    min-width: 460px;
}

.art-table th,
.art-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--brown);
}

.art-table th {
    font-family: var(--font-primary);
    color: var(--ink);
    background: var(--beige-light);
    white-space: nowrap;
}

.art-table tr:last-child td {
    border-bottom: none;
}

.art-cta {
    margin-top: 40px;
    background: var(--ink);
    border-radius: var(--r);
    padding: 34px 30px;
    text-align: center;
}

.art-cta h2 {
    font-family: var(--font-primary);
    font-size: 1.32rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.art-cta p {
    color: rgba(250, 248, 245, 0.78);
    max-width: 52ch;
    margin: 0 auto 24px;
    font-size: 0.96rem;
    line-height: 1.7;
}

.art-rel {
    margin-top: 44px;
}

.art-rel h2 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 18px;
}

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

.rel {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px 20px;
    text-decoration: none;
    transition: border-color 0.25s, transform 0.25s;
}

.rel:hover {
    border-color: rgba(201, 169, 97, 0.55);
    transform: translateY(-3px);
}

.rel span {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.rel strong {
    font-family: var(--font-primary);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--ink);
}

/* ---------- Adaptatif ---------- */

@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }
    .cond-grid,
    .rel-grid {
        grid-template-columns: 1fr;
    }
    .split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        padding: 8px 24px 18px;
        transform: translateY(-120%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        box-shadow: var(--shadow-sm);
        z-index: 99;
    }
    .site-nav.open {
        transform: translateY(0);
        visibility: visible;
    }
    .site-nav a {
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
    }
    .nav-burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }
    .domain-name {
        display: none;
    }
    .fleet-grid,
    .incl-grid,
    .blog-grid,
    .f-row {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-x-facts {
        gap: 26px;
    }
    .footer-compact {
        flex-direction: column;
    }
}

/* ---------- Flotte par catégories ---------- */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.cat {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.35s ease, border-color 0.35s ease;
}

.cat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 169, 97, 0.55);
}

.cat-media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--beige-light);
}

.cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cat:hover .cat-media img {
    transform: scale(1.05);
}

.cat-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 27, 23, 0) 62%, rgba(42, 27, 23, 0.34) 100%);
    pointer-events: none;
}

.cat-count {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    padding: 6px 13px;
    border-radius: 999px;
}

.cat-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cat-body h3 {
    font-family: var(--font-primary);
    font-size: 1.24rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.cat-body p {
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--brown);
    margin-bottom: 20px;
    flex: 1;
}

.cat-models {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.cat-models li {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brown);
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 999px;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.cat:hover .cat-models li {
    border-color: rgba(201, 169, 97, 0.45);
    color: var(--ink);
}

/* ---------- Apparition au défilement ---------- */

.reveal,
.reveal-group > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--d, 0ms);
    will-change: opacity, transform;
}

.reveal.is-in,
.reveal-group.is-in > * {
    opacity: 1;
    transform: none;
}

.reveal-group > *:nth-child(1) { transition-delay: 0ms; }
.reveal-group > *:nth-child(2) { transition-delay: 90ms; }
.reveal-group > *:nth-child(3) { transition-delay: 180ms; }
.reveal-group > *:nth-child(4) { transition-delay: 270ms; }
.reveal-group > *:nth-child(5) { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-group > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-x-media img { transition: none; }
}

/* ---------- Micro-interactions ---------- */

.hero-x-media img {
    transform: scale(1.06);
    animation: heroEase 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

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

.b {
    position: relative;
    overflow: hidden;
}

.b-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

.b-gold:hover::after {
    transform: translateX(120%);
}

.b:active {
    transform: translateY(0);
}

.site-nav a,
.footer-links a,
.crumb a,
.f-check a {
    transition: color 0.25s ease, border-color 0.25s ease;
}

.hero-x-fact strong {
    transition: color 0.3s ease;
}

.logo a img {
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.logo a:hover img {
    transform: rotate(-4deg) scale(1.04);
}

.f-group input,
.f-group select,
.f-group textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
    background: #fff;
}

.faq-q:hover {
    color: var(--brown);
}

.faq-item {
    transition: background 0.25s ease;
}

.faq-item.open {
    background: rgba(201, 169, 97, 0.04);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ADAPTATIF — révision complète
   Le menu déroulant s'ancre sur la hauteur réelle de l'en-tête
   au lieu d'une valeur fixe : plus de décalage selon l'appareil.
   ============================================================ */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
table {
    max-width: 100%;
}

.header {
    position: sticky;
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 18px;
    }
    .site-nav a {
        font-size: 0.86rem;
    }
    .domain-name {
        display: none;
    }
}

@media (max-width: 980px) {
    .cat-grid {
        gap: 20px;
    }
    .hero-x-facts {
        gap: 28px;
    }
}

/* ---- tablette / mobile : menu escamotable ---- */

@media (max-width: 900px) {
    .header-container {
        position: relative;
        gap: 12px;
        padding: 10px 20px;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 4px 20px 14px;
        box-shadow: var(--shadow-sm);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
        z-index: 99;
    }

    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav a {
        display: block;
        font-size: 0.98rem;
        padding: 14px 2px;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .site-nav a:last-child {
        border-bottom: none;
    }

    .nav-burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }

    .header-notice {
        order: 2;
        margin-left: auto;
    }
}

/* ---- téléphone ---- */

@media (max-width: 640px) {
    .wrap {
        padding: 0 18px;
    }

    .sect {
        padding: 44px 0;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.12rem;
    }

    .notice-badge {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
        padding: 4px 8px;
    }

    /* héros : hiérarchie resserrée, boutons pleine largeur */
    .hero-x-inner {
        padding: 52px 0 44px;
    }

    .hero-x h1 {
        font-size: clamp(1.75rem, 8.5vw, 2.3rem);
        max-width: none;
    }

    .hero-x-lead {
        font-size: 0.98rem;
        margin-bottom: 26px;
    }

    .hero-x-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 34px;
    }

    .hero-x-actions .b {
        width: 100%;
    }

    .hero-x-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
        padding-top: 24px;
    }

    .hero-x-fact strong {
        font-size: 1.4rem;
    }

    .hero-x-fact span {
        font-size: 0.76rem;
    }

    /* titres et intros */
    .sect h2 {
        font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    }

    .sect-lead {
        font-size: 0.96rem;
    }

    .sect-head,
    .sect-head-center {
        margin-bottom: 28px;
    }

    /* cartes flotte */
    .cat-media {
        aspect-ratio: 16 / 10;
    }

    .cat-body {
        padding: 20px 20px 22px;
    }

    .cat-body h3 {
        font-size: 1.12rem;
    }

    .cat-models {
        gap: 6px;
        padding-top: 14px;
    }

    .cat-models li {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* étapes : numéro en ligne pour gagner de la hauteur */
    .steps {
        gap: 22px;
    }

    .step {
        padding-top: 0;
        padding-left: 46px;
    }

    .step::before {
        font-size: 1.5rem;
    }

    .step::after {
        top: 30px;
        width: 26px;
    }

    /* listes inclus / non inclus */
    .incl {
        padding: 22px 20px 24px;
    }

    .incl li,
    .tick li {
        font-size: 0.92rem;
    }

    /* conditions */
    .cond {
        padding: 20px;
    }

    /* bloc image + texte */
    .split {
        gap: 26px;
    }

    .split-media img {
        aspect-ratio: 3 / 2;
    }

    /* FAQ : cible tactile confortable */
    .faq-q {
        font-size: 0.98rem;
        padding: 17px 0;
        min-height: 44px;
    }

    .faq-a p {
        font-size: 0.92rem;
    }

    /* formulaire */
    .form-card {
        padding: 22px 18px 26px;
    }

    .f-group input,
    .f-group select,
    .f-group textarea {
        font-size: 16px; /* évite le zoom automatique sur iOS */
        padding: 13px 14px;
    }

    .f-check label {
        font-size: 0.83rem;
    }

    .b {
        padding: 15px 24px;
        min-height: 48px;
    }

    /* pied de page */
    .footer {
        padding: 38px 0 24px;
    }

    .footer-compact {
        gap: 22px;
    }

    .footer-links {
        gap: 12px 16px;
    }

    .disclaimer-text {
        font-size: 0.74rem;
    }

    /* blog */
    .blog-hero {
        padding: 34px 0;
    }

    .blog-hero h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        max-width: none;
    }

    .post-body {
        padding: 20px;
    }

    .post h2 {
        font-size: 1.08rem;
    }

    /* article */
    .art-hero {
        padding: 22px 0 26px;
    }

    .art-hero h1 {
        font-size: clamp(1.4rem, 6.8vw, 1.9rem);
    }

    .art-meta {
        gap: 12px;
        font-size: 0.78rem;
    }

    .art-body {
        padding: 22px 18px 26px;
    }

    .art-lead {
        font-size: 1.02rem;
        padding-left: 14px;
    }

    .art-body h2 {
        font-size: 1.22rem;
        margin-top: 28px;
    }

    .art-body p,
    .art-body ul li,
    .art-body ol li {
        font-size: 0.95rem;
    }

    .note {
        padding: 15px 16px;
        gap: 11px;
    }

    .art-cta {
        padding: 26px 20px;
    }

    .art-cta .b,
    .article-cta .b {
        width: 100%;
    }

    .crumb {
        font-size: 0.75rem;
        gap: 6px;
    }
}

/* ---- petits téléphones ---- */

@media (max-width: 380px) {
    .wrap {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .notice-badge {
        font-size: 0.54rem;
        padding: 3px 7px;
    }

    .hero-x-facts {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cat-models li {
        font-size: 0.72rem;
    }

    .art-table {
        min-width: 380px;
        font-size: 0.86rem;
    }

    .art-table th,
    .art-table td {
        padding: 10px 12px;
    }
}

/* ---- paysage bas de plafond ---- */

@media (max-height: 480px) and (orientation: landscape) {
    .hero-x-inner {
        padding: 36px 0 30px;
    }

    .site-nav {
        max-height: 70vh;
        overflow-y: auto;
    }
}
