/* Master Quincaillerie Landing
   Direction: chantier urbain Yaoundé — acier, jaune signal, béton */

:root {
  --ink: #121417;
  --steel: #2b3036;
  --concrete: #e4e0d9;
  --chalk: #f6f3ee;
  --signal: #f0b429;
  --signal-deep: #d49812;
  --muted: #4a4f57;
  --muted-on-dark: rgba(255, 255, 255, 0.88);
  --line: rgba(18, 20, 23, 0.12);
  --radius: 2px;
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body.mq-landing {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--chalk);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.mq-landing .site-header,
body.mq-landing .storefront-breadcrumb,
body.mq-landing .site-footer,
body.mq-landing #wpadminbar + .mq-nav { /* keep */ }

.mq-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--signal);
  color: var(--ink);
  padding: .75rem 1rem;
  z-index: 10000;
}
.mq-skip:focus { left: 1rem; top: 1rem; }

.mq-wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Buttons —— */
.mq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s, color .18s, border-color .18s;
}
.mq-btn:active { transform: scale(0.97); }
.mq-btn--sm { padding: .55rem 1rem; font-size: .9rem; }
.mq-btn--lg { padding: .95rem 1.5rem; font-size: 1.05rem; }
.mq-btn--signal { background: var(--signal); color: var(--ink); }
.mq-btn--signal:hover { background: var(--signal-deep); }
.mq-btn--ink { background: var(--ink); color: var(--chalk); }
.mq-btn--ink:hover { background: var(--steel); }
.mq-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.mq-btn--outline:hover { background: #fff; color: var(--ink); }
.mq-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.mq-btn--ghost:hover { border-color: var(--ink); }

.mq-eyebrow {
  margin: 0 0 .75rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.mq-eyebrow--signal { color: var(--signal); }

/* —— Nav —— */
.mq-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.mq-nav.is-scrolled { box-shadow: 0 8px 30px rgba(18,20,23,.08); }
.mq-nav__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mq-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
}
.mq-brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--signal);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.mq-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.mq-brand__text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .02em;
}
.mq-brand__text em {
  font-style: normal;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.mq-nav__links {
  display: none;
  gap: 1.25rem;
}
.mq-nav__links a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--steel);
}
.mq-nav__links a:hover { color: var(--ink); }
.mq-nav__actions { display: flex; align-items: center; gap: .5rem; }
.mq-nav__burger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}
.mq-nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}
.mq-nav__drawer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.75rem;
  background: var(--chalk);
  border-bottom: 1px solid var(--line);
}
.mq-nav__drawer[hidden] { display: none; }
.mq-nav__drawer a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

@media (min-width: 900px) {
  .mq-nav__links { display: flex; }
  .mq-nav__burger { display: none; }
}

/* —— Hero —— */
.mq-hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.mq-hero__slides { position: relative; min-height: inherit; }
.mq-hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  padding: 0;
  background: var(--bg) center/cover no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity .7s var(--ease), transform 1.1s var(--ease), visibility .7s;
}
.mq-hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.mq-hero__veil {
  display: block;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 11, 13, 0.94) 0%, rgba(10, 11, 13, 0.88) 42%, rgba(10, 11, 13, 0.35) 68%, rgba(10, 11, 13, 0.15) 100%);
  pointer-events: none;
}
.mq-hero__copy {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: auto auto clamp(5rem, 10vw, 6.5rem) auto;
  max-width: 640px;
  justify-self: start;
  padding: 1.5rem 1.35rem 1.5rem 0;
  /* Panneau texte opaque = contraste garanti, photo reste visible à droite */
  background: linear-gradient(90deg, rgba(10, 11, 13, 0.72) 0%, rgba(10, 11, 13, 0.45) 70%, transparent 100%);
}
@media (min-width: 900px) {
  .mq-hero__copy {
    margin-left: max(1.25rem, calc((100% - 1120px) / 2));
    padding: 2rem 2.5rem 2rem 0;
    max-width: 560px;
  }
}
.mq-hero .mq-eyebrow { color: var(--signal); }
.mq-hero__brand {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: .02em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.mq-hero h1,
.mq-hero__h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.8vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  font-weight: 400;
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.mq-hero__sub {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #f2f2f2;
  max-width: 42ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.mq-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.mq-hero__controls {
  position: absolute;
  right: max(1.25rem, calc((100% - 1120px) / 2));
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}
.mq-hero__controls button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(18,20,23,.35);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.mq-hero__controls button:hover { background: var(--signal); color: var(--ink); border-color: var(--signal); }
.mq-hero__dots { display: flex; gap: .4rem; }
.mq-hero__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.35);
  padding: 0;
}
.mq-hero__dots button.is-active { background: var(--signal); width: 22px; border-radius: 999px; }
.mq-hero__tape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--signal) 0 12px,
    var(--ink) 12px 24px
  );
}

/* —— Trust —— */
.mq-trust {
  background: var(--ink);
  color: #fff;
  border-bottom: 8px solid var(--signal);
}
.mq-trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .mq-trust ul { grid-template-columns: repeat(4, 1fr); }
}
.mq-trust li {
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.mq-trust li:nth-child(2n) { border-right: 0; }
@media (min-width: 800px) {
  .mq-trust li:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.1); }
  .mq-trust li:last-child { border-right: 0; }
}
.mq-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: var(--signal);
  margin-bottom: .2rem;
}
.mq-trust span {
  font-family: var(--font-cond);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* —— Sections —— */
.mq-section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.mq-section--ink { background: var(--ink); color: #fff; }
.mq-section--concrete { background: var(--concrete); }
.mq-section__head { max-width: 620px; margin-bottom: 2.5rem; }
.mq-section__head h2,
.mq-why__copy h2,
.mq-contact h2,
.mq-promo h2 {
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  font-weight: 400;
}
.mq-lede { margin: 0; color: var(--muted); font-size: 1.05rem; }
.mq-section__head--light .mq-lede,
.mq-section--ink .mq-lede { color: var(--muted-on-dark); }

/* Categories */
.mq-cats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .mq-cats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .mq-cats { grid-template-columns: repeat(3, 1fr); }
}
.mq-cat {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mq-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(18,20,23,.1);
}
.mq-cat__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--concrete);
}
.mq-cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.mq-cat:hover .mq-cat__media img { transform: scale(1.06); }
.mq-cat__body { padding: 1.15rem 1.2rem 1.35rem; }
.mq-cat__body h3 {
  margin: 0 0 .4rem;
  font-family: var(--font-cond);
  font-size: 1.35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mq-cat__body p {
  margin: 0 0 .9rem;
  color: var(--muted);
  font-size: .95rem;
}
.mq-cat__go {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--signal-deep);
}

/* Why */
.mq-why {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #fff;
}
.mq-why__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .mq-why__grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
  }
}
.mq-why__visual {
  position: relative;
}
.mq-why__visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.mq-why__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .55rem .85rem;
  font-size: .85rem;
}
.mq-why__list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.mq-why__list li {
  padding: 1rem 0 1rem 1rem;
  border-left: 3px solid var(--signal);
  background: linear-gradient(90deg, rgba(240,180,41,.08), transparent);
}
.mq-why__list strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.mq-why__list span { color: var(--muted); font-size: .95rem; }

/* Steps */
.mq-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .mq-steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.mq-steps li {
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.mq-steps__n {
  display: block;
  font-family: var(--font-display);
  color: var(--signal);
  font-size: 1.6rem;
  margin-bottom: .75rem;
}
.mq-steps h3 {
  margin: 0 0 .5rem;
  font-family: var(--font-cond);
  font-size: 1.25rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mq-steps p { margin: 0; color: var(--muted-on-dark); font-size: .95rem; }

/* Promo */
.mq-promo {
  background: var(--signal);
  color: var(--ink);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.mq-promo__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.mq-promo__badge {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  background: var(--ink);
  color: var(--signal);
  padding: .3rem .55rem;
  margin-bottom: .75rem;
}
.mq-promo p { margin: 0; max-width: 48ch; }
.mq-promo__note { margin-top: .5rem !important; font-size: .85rem; opacity: .75; }

/* Quotes */
.mq-quotes {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .mq-quotes { grid-template-columns: repeat(3, 1fr); }
}
.mq-quote {
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--signal);
}
.mq-quote p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.45;
}
.mq-quote footer { display: flex; flex-direction: column; gap: .15rem; }
.mq-quote strong {
  font-family: var(--font-cond);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mq-quote span { color: var(--muted); font-size: .9rem; }

/* FAQ */
.mq-faq-wrap { max-width: 760px; }
.mq-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: .6rem;
  padding: 0 1rem;
}
.mq-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  padding: 1.1rem 0;
}
.mq-faq__item summary::-webkit-details-marker { display: none; }
.mq-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--signal-deep);
  font-size: 1.2rem;
}
.mq-faq__item[open] summary::after { content: "–"; }
.mq-faq__item p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}

/* Contact */
.mq-contact {
  background: var(--ink);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.mq-contact__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .mq-contact__grid {
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
  }
}
.mq-contact__meta {
  list-style: none;
  margin: 1.75rem 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.mq-contact__meta li { display: grid; gap: .2rem; }
.mq-contact__meta span {
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.mq-contact__meta a { color: #fff; text-decoration: none; }
.mq-contact__meta a:hover { color: var(--signal); }
.mq-contact__cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.mq-contact__card {
  background: var(--steel);
  padding: 1.75rem;
  border-top: 4px solid var(--signal);
}
.mq-contact__card-title {
  margin: 0 0 .35rem;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.mq-contact__card-name {
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.mq-contact__card p { color: rgba(255,255,255,.7); margin: 0 0 1.25rem; }

/* Footer */
.mq-foot {
  background: #0b0c0e;
  color: rgba(255,255,255,.65);
  padding: 2.5rem 0;
  font-size: .95rem;
}
.mq-foot__inner { display: grid; gap: 1rem; }
.mq-brand--foot .mq-brand__text strong { color: #fff; }
.mq-brand--foot .mq-brand__text em { color: rgba(255,255,255,.5); }
.mq-foot a { color: var(--signal); }
.mq-foot__legal { margin: 0; font-size: .85rem; }

/* Popup */
.mq-popup {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.mq-popup[hidden] { display: none; }
.mq-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18,20,23,.72);
  backdrop-filter: blur(4px);
}
.mq-popup__panel {
  position: relative;
  width: min(720px, 100%);
  background: var(--chalk);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: mqPop .35s var(--ease);
}
@media (min-width: 700px) {
  .mq-popup__panel { grid-template-columns: .9fr 1.1fr; }
}
@keyframes mqPop {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.mq-popup__media { min-height: 200px; background: var(--concrete); }
.mq-popup__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mq-popup__body { padding: 1.5rem 1.5rem 1.75rem; display: grid; gap: .85rem; align-content: center; }
.mq-popup__body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
}
.mq-popup__body p { margin: 0; color: var(--muted); }
.mq-popup__x {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(18,20,23,.75);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
}
.mq-popup__dismiss {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: underline;
  justify-self: start;
}

/* FAB */
.mq-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 4000;
  transition: transform .2s var(--ease);
}
.mq-fab:hover { transform: scale(1.06); }
.mq-fab:active { transform: scale(0.96); }

/* Admin bar offset */
.admin-bar .mq-nav { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .mq-nav { top: 46px; }
}

/* Logo */
.mq-brand__logo {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: cover;
  border: 2px solid var(--ink);
  background: #fff;
  flex-shrink: 0;
}

/* Nav search */
.mq-nav-search {
  display: none;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
@media (min-width: 1100px) {
  .mq-nav-search { display: flex; }
}
.mq-nav-search input {
  border: 0;
  padding: .45rem .7rem;
  width: 140px;
  font: inherit;
  color: var(--ink);
  background: transparent;
}
.mq-nav-search input::placeholder { color: #5c6168; }
.mq-nav-search button {
  border: 0;
  background: var(--ink);
  color: var(--signal);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
}

/* Projets landing */
.mq-projets {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .mq-projets { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .mq-projets { grid-template-columns: repeat(3, 1fr); }
}
.mq-projet {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mq-projet__media { aspect-ratio: 4/3; overflow: hidden; background: var(--concrete); }
.mq-projet__media img { width: 100%; height: 100%; object-fit: cover; }
.mq-projet__body { padding: 1rem 1.1rem 1.25rem; }
.mq-projet__meta {
  margin: 0 0 .35rem;
  font-family: var(--font-cond);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  color: #5c6168;
}
.mq-projet h3 {
  margin: 0 0 .45rem;
  font-family: var(--font-cond);
  font-size: 1.2rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.mq-projet p { margin: 0; color: var(--muted); font-size: .95rem; }
.mq-section__more { margin: 2rem 0 0; }

/* Blog */
.mq-blog {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .mq-blog { grid-template-columns: repeat(3, 1fr); }
}
.mq-blog__card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--signal);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform .2s var(--ease);
}
.mq-blog__card:hover { transform: translateY(-3px); }
.mq-blog__card h3 {
  margin: 0 0 .6rem;
  font-family: var(--font-cond);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.mq-blog__card p { margin: 0 0 .9rem; color: var(--muted); font-size: .95rem; }
.mq-blog__card span {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--signal-deep);
}

/* Facebook */
.mq-fb__embed { display: flex; justify-content: center; }
.mq-fb__placeholder {
  background: #fff;
  border: 1px dashed var(--line);
  padding: 2rem;
  text-align: center;
  max-width: 520px;
}
.mq-fb__placeholder p { color: var(--muted); margin: 0 0 1rem; }
