/* Retro Mecanic — design inspiré de Singer Vehicle Design : photo plein écran, logo centré, menu réduit à un bouton,
   titres condensés en capitales légères, presque pas de texte, noir et blanc. Polices auto-hébergées (Oswald, Inter). */
@import url('../fonts/fonts-local.css');

:root {
  --black: #0b0b0c;
  --ink: #16171a;
  --grey: #6f7378;
  --line: #e4e4e6;
  --paper: #ffffff;
  --stone: #f3f3f2;
  --accent: #b8302a;
  --cond: "Oswald", "Arial Narrow", Impact, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--paper); }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, .cond { font-family: var(--cond); font-weight: 300; text-transform: uppercase; letter-spacing: .02em; line-height: 1.05; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.45rem; }
.wrap { width: min(1280px, 100% - 3rem); margin-inline: auto; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--grey); }
.tiny { font-size: .8rem; color: var(--grey); }
.eyebrow { font-family: var(--sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--grey); margin-bottom: 1rem; font-weight: 500; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem; z-index: 999; }
.hp { position: absolute; left: -5000px; }

/* Boutons */
.btn { display: inline-block; padding: 1rem 1.9rem; font-family: var(--sans); font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--ink); background: var(--ink); color: #fff; cursor: pointer; transition: .18s; line-height: 1.2; text-align: center; }
.btn:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: #e9e9e9; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 1.2rem 2.4rem; font-size: .8rem; }
.btn-block { display: block; width: 100%; }
.link { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: .2rem; font-weight: 500; }

/* En-tête : bouton menu à gauche, logo centré, devis à droite */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--black); color: #fff; }
.site-header.is-transparent { position: absolute; left: 0; right: 0; background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0)); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 1.1rem 1.6rem; }
.logo img { height: 34px; width: auto; }
.menu-btn { justify-self: start; display: flex; align-items: center; gap: .7rem; background: none; border: 0; cursor: pointer; padding: .3rem 0; color: #fff; }
.menu-btn span { display: block; width: 26px; height: 1.5px; background: #fff; }
.menu-btn span + span { margin-top: 6px; }
.menu-btn > span:first-child { margin-top: 0; }
.menu-btn em { font-style: normal; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; }
.menu-btn .bars { display: flex; flex-direction: column; }
.header-cta { justify-self: end; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: .15rem; }
.header-cta:hover { border-color: #fff; }

/* Menu plein écran */
.menu { position: fixed; inset: 0; background: var(--black); color: #fff; z-index: 100; display: none; overflow-y: auto; }
.menu.open { display: block; }
.menu-close { position: absolute; top: .8rem; right: 1.4rem; background: none; border: 0; color: #fff; font-size: 2.8rem; cursor: pointer; line-height: 1; }
.menu-inner { min-height: 100%; display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; padding: 5rem 8vw; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list a { display: block; font-family: var(--cond); font-weight: 300; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1.1; text-decoration: none; padding: .15em 0; color: #fff; opacity: .92; }
.menu-list a:hover { opacity: 1; padding-left: .3em; transition: .2s; }
.menu-side { display: flex; flex-direction: column; gap: 1rem; max-width: 380px; }
.menu-contact { margin-top: 1.5rem; color: #b9bcc2; font-size: .95rem; }
.menu-contact a { color: #fff; text-decoration: none; font-size: 1.3rem; }

.flash { padding: .9rem 1.5rem; text-align: center; font-size: .92rem; font-weight: 400; }
.flash-success { background: #e6f4ea; color: #1e6b3a; }
.flash-error { background: #fbe6e4; color: #9c2a23; }

/* Hero plein écran */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; background: var(--black) center / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1) 40%, rgba(0,0,0,.65) 100%); }
.hero-content { position: relative; z-index: 1; padding: 0 6vw 8vh; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .6rem; }
.hero p { font-size: 1.05rem; color: #e3e3e3; max-width: 560px; }
.hero-links { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; margin-top: 1.4rem; }
.hero-links .link { color: #fff; }
.hero-arrows { position: absolute; right: 2rem; bottom: 8vh; z-index: 1; display: flex; gap: .5rem; }
.hero-arrows button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.6); background: rgba(0,0,0,.3); color: #fff; cursor: pointer; font-size: 1.2rem; }
.hero-slide { position: absolute; inset: 0; background: center / cover no-repeat; opacity: 0; transition: opacity 1s; }
.hero-slide.active { opacity: 1; }
.hero-caption { display: none; }
.hero-caption.active { display: block; }

/* Sections */
.section { padding: 6rem 0; }
.section-dark { background: var(--black); color: #fff; }
.section-dark h2, .section-dark .eyebrow { color: #fff; }
.section-dark .eyebrow { color: #9a9ea5; }
.section-stone { background: var(--stone); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.intro { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.5; font-weight: 300; max-width: 900px; }

/* Grille de réalisations : grandes cartes photo, titre en bas */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 1.4rem; }
.proj { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--ink); text-decoration: none; color: #fff; }
.proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.proj:hover img { transform: scale(1.04); }
.proj-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.6rem; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.75)); }
.proj-info b { display: block; font-family: var(--cond); font-weight: 300; font-size: 1.7rem; text-transform: uppercase; letter-spacing: .02em; line-height: 1.05; }
.proj-info span { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: #d7d7d7; }
.proj.large { grid-column: span 2; aspect-ratio: 16/8; }

/* Services */
.serv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 3rem 2.5rem; }
.serv h3 { margin-bottom: .5rem; }
.serv .num { font-family: var(--cond); font-size: .95rem; color: var(--grey); letter-spacing: .1em; display: block; margin-bottom: .6rem; }
.serv p { color: #45484d; }

/* Avis */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.review blockquote { margin: 0 0 1rem; font-size: 1.15rem; line-height: 1.55; font-weight: 300; }
.review cite { font-style: normal; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }
.stars { color: #d9a100; letter-spacing: .1em; font-size: .9rem; }
.google-badge { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--line); padding: .7rem 1rem; }

/* Bandeau appel à l'action */
.cta-band { background: var(--black); color: #fff; padding: 5rem 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c9ccd1; max-width: 560px; margin: 0 auto 2rem; }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Page réalisation */
.page-hero { position: relative; min-height: 70svh; display: flex; align-items: flex-end; color: #fff; background: var(--black) center / cover no-repeat; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.7)); }
.page-hero .wrap { position: relative; z-index: 1; padding-bottom: 4rem; }
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: #cfd2d7; }
.page-title { padding: 4.5rem 0 2.5rem; }
.page-title h1 { margin-bottom: .4rem; }
.facts { display: flex; gap: 2.5rem; flex-wrap: wrap; margin: 1rem 0 2rem; }
.facts div { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }
.facts b { display: block; font-family: var(--cond); font-weight: 400; font-size: 1.4rem; letter-spacing: .02em; color: var(--ink); text-transform: none; }
.prose { max-width: 760px; font-size: 1.05rem; }
.prose p { color: #33363b; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1rem; }
.photo-grid a { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--stone); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.stage-title { display: flex; align-items: center; gap: 1rem; margin: 3rem 0 1.2rem; }
.stage-title h2 { font-size: 1.4rem; margin: 0; }
.stage-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.compare figure { margin: 0; }
.compare img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.compare figcaption { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); margin-top: .5rem; }

/* Véhicules à vendre */
.veh-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.veh { text-decoration: none; color: inherit; display: block; }
.veh .img { aspect-ratio: 4/3; overflow: hidden; background: var(--stone); position: relative; }
.veh img { width: 100%; height: 100%; object-fit: cover; }
.veh .sold { position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: #fff; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; padding: .4rem .7rem; }
.veh h3 { margin: 1rem 0 .2rem; }
.veh .price { font-family: var(--cond); font-size: 1.3rem; }
.veh .meta { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }

/* Formulaires (grands champs, lisibles) */
.form-page { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; padding: 4rem 0 5rem; align-items: start; }
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; margin-bottom: .5rem; }
.field input[type=text], .field input[type=tel], .field input[type=email], .field input[type=date], .field input[type=password], .field select, .field textarea { width: 100%; padding: .95rem 1rem; border: 1px solid #cfd0d3; font-family: var(--sans); font-size: 1.05rem; background: #fff; border-radius: 0; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); }
.field .help { font-size: .85rem; color: var(--grey); margin-top: .35rem; }
.field .error { color: var(--accent); font-size: .9rem; margin-top: .35rem; font-weight: 400; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; margin: 1rem 0; }
.check input { margin-top: .3rem; accent-color: var(--ink); width: 18px; height: 18px; }
.photo-drop { border: 1px dashed #b9bbc0; padding: 1.4rem; text-align: center; cursor: pointer; background: var(--stone); }
.photo-drop input { display: none; }
.photo-drop b { display: block; font-weight: 500; margin-bottom: .3rem; }
.photo-previews { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .8rem; }
.photo-previews img { width: 90px; height: 90px; object-fit: cover; }
.side-card { background: var(--stone); padding: 2rem; }
.side-card h3 { margin-bottom: 1rem; }
.side-card p { font-size: .95rem; }
.side-card .big { font-family: var(--cond); font-size: 1.9rem; text-decoration: none; display: block; margin: .3rem 0 1rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem 0 5rem; }
.contact-grid dl { margin: 0; }
.contact-grid dt { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); margin-top: 1.4rem; }
.contact-grid dd { margin: .2rem 0 0; font-size: 1.1rem; }
.map-note { background: var(--stone); padding: 1.5rem; font-size: .92rem; }

/* Pied de page */
.site-footer { background: var(--black); color: #c9ccd1; padding: 4rem 0 2rem; font-size: .92rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer h4 { font-family: var(--sans); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: #8d9198; margin: 0 0 .8rem; font-weight: 500; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { height: 30px; width: auto; margin-bottom: 1rem; }
.footer-legal { border-top: 1px solid #26282c; margin-top: 3rem; padding-top: 1.4rem; display: flex; gap: 1.6rem; flex-wrap: wrap; font-size: .78rem; color: #8d9198; }
.footer-legal span { margin-left: auto; }

/* Pages légales */
.legal { max-width: 800px; padding: 3rem 0 5rem; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: .55rem .7rem; text-align: left; vertical-align: top; }
.legal th { background: var(--stone); font-weight: 500; }

/* ---- Espace atelier : meme identite que le site (Oswald capitales, Inter, noir et blanc), en plus gros et plus simple ---- */
body.admin { background: var(--paper); font-size: 18px; font-weight: 400; }
.adm-top { background: var(--black); color: #fff; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.adm-top img { height: 28px; width: auto; }
.adm-top strong { font-family: var(--cond); font-weight: 300; text-transform: uppercase; letter-spacing: .12em; font-size: 1.1rem; }
.adm-top .adm-user { margin-left: auto; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #c9ccd1; }
.adm-top .adm-user a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.5); }
.adm-nav { background: #fff; border-bottom: 1px solid var(--line); display: flex; overflow-x: auto; }
.adm-nav a { padding: 1.1rem 1.3rem; text-decoration: none; color: var(--ink); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; white-space: nowrap; border-bottom: 2px solid transparent; }
.adm-nav a.active { border-bottom-color: var(--ink); }
.adm-nav .count { display: inline-block; min-width: 1.6em; padding: .15em .45em; border-radius: 1em; background: var(--ink); color: #fff; font-size: .75rem; letter-spacing: 0; text-align: center; margin-left: .4rem; }
.adm-main { width: min(1100px, 100% - 2rem); margin: 2.5rem auto 4rem; }
.adm-main h1 { font-size: clamp(2rem, 4vw, 3rem); }
.adm-main h2 { font-size: 1.5rem; }
.adm-main p.lead { font-size: 1.05rem; color: #45484d; max-width: 720px; font-weight: 300; }
.big-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; margin: 1.5rem 0 2.5rem; }
.big-tile { background: #fff; border: 1px solid var(--line); padding: 1.6rem; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: .4rem; min-height: 150px; transition: .15s; }
.big-tile:hover { border-color: var(--ink); }
.big-tile .ico { font-size: 1.8rem; }
.big-tile b { font-family: var(--cond); font-weight: 400; text-transform: uppercase; letter-spacing: .03em; font-size: 1.5rem; }
.big-tile span { color: var(--grey); font-size: .95rem; font-weight: 300; }
.big-tile .badge { align-self: flex-start; background: var(--ink); color: #fff; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .6rem; font-weight: 500; }
.adm-panel { background: #fff; border: 1px solid var(--line); padding: 1.6rem; margin-bottom: 1.4rem; }
.adm-btn { display: inline-block; padding: 1rem 1.6rem; background: var(--ink); color: #fff; border: 1px solid var(--ink); font-family: var(--sans); font-size: .82rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; cursor: pointer; border-radius: 0; text-align: center; line-height: 1.2; transition: .15s; }
.adm-btn:hover { background: #000; }
.adm-btn.secondary { background: #fff; color: var(--ink); }
.adm-btn.secondary:hover { background: var(--ink); color: #fff; }
.adm-btn.danger { background: #fff; color: var(--accent); border-color: var(--accent); }
.adm-btn.danger:hover { background: var(--accent); color: #fff; }
.adm-btn.green { background: #1e6b3a; border-color: #1e6b3a; }
.adm-btn.green:hover { background: #155229; }
.adm-btn.block { display: block; width: 100%; }
.adm-btn.small { padding: .7rem 1rem; font-size: .72rem; }
.adm-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.adm-list { list-style: none; margin: 0; padding: 0; }
.adm-list li { background: #fff; border: 1px solid var(--line); margin-bottom: .8rem; padding: 1.1rem 1.3rem; display: flex; gap: 1.2rem; align-items: center; }
.adm-list li.unread { border-left: 4px solid var(--ink); }
.adm-list .thumb { width: 90px; height: 68px; object-fit: cover; flex-shrink: 0; background: var(--stone); }
.adm-list .body { flex: 1; min-width: 0; }
.adm-list .body b { font-size: 1.1rem; display: block; font-weight: 500; }
.adm-list .body b a { text-decoration: none; }
.adm-list .body span { color: var(--grey); font-size: .95rem; font-weight: 300; }
.adm-list .state { font-size: .7rem; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; padding: .35rem .6rem; background: var(--stone); white-space: nowrap; }
.state.nouvelle { background: var(--ink); color: #fff; }
.state.en_cours { background: #fff3d6; color: #7a5200; }
.state.traitee, .state.publie { background: #e6f4ea; color: #1e6b3a; }
.state.brouillon { background: var(--stone); color: #555; }
.adm-form .field label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.adm-form .field input[type=text], .adm-form .field input[type=tel], .adm-form .field input[type=email], .adm-form .field input[type=date], .adm-form .field input[type=password], .adm-form .field input[type=number], .adm-form .field select, .adm-form .field textarea { font-size: 1.1rem; padding: 1rem; border: 1px solid #cfd0d3; border-radius: 0; }
.adm-form .field .help { font-size: .95rem; font-weight: 300; }
.adm-form .check { font-size: 1.05rem; }
.adm-form .check input { width: 24px; height: 24px; }
.photo-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .8rem; margin: 1rem 0; }
.photo-tile { position: relative; background: #fff; border: 1px solid var(--line); }
.photo-tile img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.photo-tile form { position: absolute; top: .3rem; right: .3rem; }
.photo-tile button { background: rgba(0,0,0,.75); color: #fff; border: 0; width: 32px; height: 32px; cursor: pointer; font-size: 1.1rem; }
.photo-tile .stage { font-size: .72rem; padding: .3rem .5rem; color: var(--grey); text-transform: uppercase; letter-spacing: .08em; }
.upload-box { border: 1px dashed #b9bbc0; background: var(--stone); padding: 1.6rem; text-align: center; }
.upload-box label.adm-btn { margin-top: .6rem; }
.upload-box input[type=file] { display: none; }
.stage-choice { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: .8rem; }
.stage-choice label { border: 1px solid var(--ink); padding: .6rem 1rem; cursor: pointer; background: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
.stage-choice input { margin-right: .4rem; accent-color: var(--ink); }
.stage-choice label:has(input:checked) { background: var(--ink); color: #fff; }
.save-bar { position: sticky; bottom: 0; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); padding: 1rem; margin: 1.5rem -1rem 0; display: flex; gap: .8rem; justify-content: flex-end; flex-wrap: wrap; }
.help-steps li { margin-bottom: .8rem; font-size: 1.05rem; font-weight: 300; }
.adm-kv { display: grid; grid-template-columns: 160px 1fr; gap: .5rem 1.2rem; font-size: 1.05rem; }
.adm-kv dt { color: var(--grey); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; padding-top: .3rem; }
.adm-kv dd { margin: 0; }
.adm-login { max-width: 440px; margin: 4rem auto; }
.adm-msg { background: var(--stone); border-left: 3px solid var(--ink); padding: 1rem 1.2rem; margin-bottom: 1.2rem; font-weight: 300; }

/* Responsive */
@media (max-width: 960px) {
  .menu-inner { grid-template-columns: 1fr; padding: 5rem 8vw 3rem; }
  .form-page, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proj.large { grid-column: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .header-inner { padding: .9rem 1rem; }
  .menu-btn em, .header-cta { display: none; }
  .logo img { height: 28px; }
  .hero { min-height: 92svh; }
  .hero-content { padding: 0 1.4rem 9vh; }
  .hero-arrows { display: none; }
  .section { padding: 3.5rem 0; }
  .proj-grid, .veh-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal span { margin-left: 0; width: 100%; }
  .adm-main { width: calc(100% - 1.5rem); }
  .adm-top { padding: .8rem 1rem; gap: .8rem; }
  .adm-top strong { display: none; }
  .adm-nav a { font-size: .74rem; letter-spacing: .12em; }
  .adm-top .adm-user { font-size: .85rem; }
  .adm-nav a { padding: .9rem 1rem; font-size: 1rem; }
  body.admin { font-size: 17px; }
  .big-tile { min-height: 0; padding: 1.2rem; }
  .adm-kv { grid-template-columns: 1fr; }
  .adm-list li { flex-wrap: wrap; }
  .save-bar .adm-btn { flex: 1; }
}

/* Pictogrammes vectoriels */
.ico { width: 1.15em; height: 1.15em; vertical-align: -.2em; flex-shrink: 0; }
.ico-tile { width: 32px; height: 32px; margin-bottom: .5rem; color: var(--ink); stroke-width: 1.25; }
.adm-btn .ico { margin-right: .35rem; }
.photo-tile button .ico { width: 16px; height: 16px; vertical-align: middle; }
