/* ==========================================================================
   L&J ALU — Loïc & Joyce, Menuisiers · Storistes
   Design system repris du visuel de la société
   ========================================================================== */

:root {
  /* Couleurs de marque, relevées au pixel sur le logo L&J ALU.
     Gris anthracite dominant, magenta en accent uniquement. */
  --anthracite: #333333;        /* anthracite : fonds sombres, titres */
  --anthracite-2: #1F1F1F;      /* anthracite profond */
  --magenta: #ED0F8C;          /* magenta du logo : accents, boutons */
  --magenta-clair: #FF4FB0;    /* magenta clair : survol sur fond sombre */
  --magenta-bouton: #DC0D82;    /* magenta assombri : fond de bouton, texte blanc (4,75:1) */
  --magenta-lisible: #C4076F;   /* magenta assombri : texte sur fond clair (WCAG AA) */
  --gris-logo: #727272;         /* gris des lettres du logo */

  --blanc: #FFFFFF;
  --creme: #F7F7F8;
  --gris-clair: #E6E6E8;
  --gris: #6E6E73;
  --encre: #1A1A1C;

  --ombre-s: 0 2px 8px rgba(31, 31, 31, .08);
  --ombre-m: 0 12px 32px rgba(31, 31, 31, .12);
  --ombre-l: 0 24px 60px rgba(31, 31, 31, .18);

  --rayon: 14px;
  --rayon-l: 24px;

  --largeur: 1180px;
  --header-h: 84px;

  --transition: .28s cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------- Base --- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--encre);
  background: var(--blanc);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; }

.wrap {
  width: 100%;
  max-width: var(--largeur);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(64px, 9vw, 118px) 0; }
.section--creme { background: var(--creme); }
.section--vert { background: var(--creme); color: var(--encre); }
.section--vert h2 { color: var(--anthracite); }

.accent { color: var(--magenta); }

.surtitre {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}

.section--vert .surtitre { color: var(--magenta-lisible); }

.chapeau {
  font-size: 1.12rem;
  color: var(--gris);
  max-width: 62ch;
}

.section--vert .chapeau { color: var(--gris); }
.hero .chapeau { color: rgba(255, 255, 255, .88); }

.centre { text-align: center; }
.centre .chapeau { margin-inline: auto; }

/* ------------------------------------------------------------ Boutons --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primaire {
  background: var(--magenta-bouton);
  color: var(--blanc);
  box-shadow: 0 8px 24px rgba(176, 219, 60, .32);
}

.btn--primaire:hover {
  background: var(--magenta-clair);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(176, 219, 60, .42);
}

.btn--fonce {
  background: var(--anthracite);
  color: var(--blanc);
}

.btn--fonce:hover {
  background: var(--anthracite-2);
  transform: translateY(-2px);
}

.btn--ligne {
  background: transparent;
  border-color: currentColor;
}

.btn--ligne:hover {
  background: var(--blanc);
  color: var(--anthracite);
  border-color: var(--blanc);
}

.section--vert .btn--ligne:hover { background: var(--anthracite); color: var(--blanc); }

/* ------------------------------------------------------------- Header --- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header--fixe {
  border-bottom-color: var(--gris-clair);
  box-shadow: var(--ombre-s);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--anthracite);
}

/* Logo en portrait : on fixe la hauteur, la largeur suit */
.logo img { width: auto; height: 52px; }
.footer .logo img { height: 58px; }

.logo span { font-size: 1.28rem; line-height: 1; }
.logo small {
  display: block;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--encre);
  transition: var(--transition);
}

.nav a:hover { background: var(--creme); color: var(--anthracite); }
.nav a[aria-current="page"] { color: var(--anthracite); background: var(--creme); }

.nav .btn { margin-left: 10px; padding: 12px 24px; }
.nav .btn:hover { background: var(--magenta-clair); color: var(--anthracite-2); }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--creme);
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--anthracite);
  transition: var(--transition);
}

.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }

.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* --------------------------------------------------------------- Hero --- */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 100px;
  background: var(--anthracite);
  color: var(--blanc);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 78% 12%, rgba(176, 219, 60, .22), transparent 62%),
    linear-gradient(160deg, var(--anthracite) 0%, var(--anthracite-2) 100%);
}

/* Lames de pergola en fond, dessinées en CSS */
.hero::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: repeating-linear-gradient(
    102deg,
    rgba(255, 255, 255, .05) 0 3px,
    transparent 3px 26px
  );
  transform: rotate(-4deg);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 2; }

.hero__grille {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero h1 { color: var(--blanc); margin-bottom: .35em; }

.hero__services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.hero__services li {
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__zone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .74);
}

.hero__zone svg { width: 18px; height: 18px; color: var(--magenta); flex: none; }

.hero__visuel {
  border-radius: var(--rayon-l);
  overflow: hidden;
  box-shadow: var(--ombre-l);
  border: 1px solid rgba(255, 255, 255, .14);
  aspect-ratio: 5 / 4;
}

.hero__visuel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

/* Variante hero des pages intérieures */
.hero--page { padding: calc(var(--header-h) + 66px) 0 68px; }
.hero--page .hero__grille { grid-template-columns: 1fr; max-width: 800px; }
.hero--page h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); }

.fil {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
}

.fil li::after { content: "›"; margin-left: 8px; opacity: .55; }
.fil li:last-child::after { content: ""; }
.fil a:hover { color: var(--magenta-clair); }
.fil [aria-current] { color: var(--magenta-clair); }

/* --------------------------------------------------- Bandeau confiance --- */

.bandeau {
  background: var(--creme);
  color: var(--anthracite);
  border-bottom: 1px solid var(--gris-clair);
}

.bandeau .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 26px;
}

.bandeau div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
}

.bandeau svg { width: 21px; height: 21px; flex: none; }

/* ------------------------------------------------------------- Cartes --- */

.grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.carte {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  background: var(--blanc);
  border: 1px solid var(--gris-clair);
  border-radius: var(--rayon-l);
  transition: var(--transition);
}

.carte:hover {
  transform: translateY(-5px);
  border-color: var(--magenta);
  box-shadow: var(--ombre-m);
}

.carte__icone {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--anthracite);
  color: var(--magenta);
}

.carte__icone svg { width: 28px; height: 28px; }

.carte h3 { margin-bottom: .45em; color: var(--anthracite); }

.carte p { color: var(--gris); font-size: .98rem; margin-bottom: 1.2em; }

.carte ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: .95rem;
}

.carte li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--gris);
}

.carte li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--magenta);
}

.carte__lien {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--anthracite);
}

.carte__lien svg { width: 17px; height: 17px; transition: var(--transition); }
.carte:hover .carte__lien svg { transform: translateX(5px); }

/* ------------------------------------------------------------- Étapes --- */

.etapes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-top: 52px;
  counter-reset: etape;
}

.etape { position: relative; padding-top: 16px; }

.etape::before {
  counter-increment: etape;
  content: "0" counter(etape);
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--magenta);
  opacity: .55;
  margin-bottom: 14px;
}

.etape h3 { color: var(--anthracite); font-size: 1.18rem; }
.etape p { color: var(--gris); font-size: .98rem; margin: 0; }

/* -------------------------------------------------------- Deux colonnes --- */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.duo__media {
  border-radius: var(--rayon-l);
  overflow: hidden;
  box-shadow: var(--ombre-m);
  aspect-ratio: 4 / 3;
}

.duo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.liste-check { margin: 26px 0 0; padding: 0; list-style: none; }

.liste-check li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 15px;
  font-size: 1.02rem;
}

.liste-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--magenta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* ----------------------------------------------------------------- FAQ --- */

.faq { max-width: 820px; margin: 48px auto 0; }

.faq details {
  border: 1px solid var(--gris-clair);
  border-radius: var(--rayon);
  background: var(--blanc);
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq details[open] { border-color: var(--magenta); box-shadow: var(--ombre-s); }

.faq summary {
  padding: 20px 56px 20px 24px;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--anthracite);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 2.5px solid var(--magenta);
  border-bottom: 2.5px solid var(--magenta);
  transform: rotate(45deg);
  transition: var(--transition);
}

.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }

.faq p { padding: 0 24px 20px; margin: 0; color: var(--gris); }

/* ------------------------------------------------------------- Contact --- */

.contact-grille {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.coord { margin: 0; padding: 0; list-style: none; }

.coord li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gris-clair);
}

.section--vert .coord li { border-bottom-color: var(--gris-clair); }

.coord li:last-child { border-bottom: 0; }

.coord__icone {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--magenta-bouton);
  color: var(--blanc);
}

.coord__icone svg { width: 21px; height: 21px; }

.coord strong { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: 3px; font-weight: 700; }
.coord a, .coord span { font-size: 1.1rem; font-weight: 700; }
.coord a:hover { color: var(--magenta-lisible); }

/* ------------------------------------------------------------ Formulaire --- */

.form {
  background: var(--blanc);
  border-radius: var(--rayon-l);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--ombre-m);
  color: var(--encre);
}

.form__ligne { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.champ { margin-bottom: 18px; }

.champ label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--anthracite);
}

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--gris-clair);
  border-radius: 11px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--encre);
  background: var(--creme);
  transition: var(--transition);
}

.champ textarea { resize: vertical; min-height: 130px; }

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--magenta);
  background: var(--blanc);
  box-shadow: 0 0 0 4px rgba(176, 219, 60, .18);
}

.champ input[aria-invalid="true"],
.champ select[aria-invalid="true"],
.champ textarea[aria-invalid="true"] { border-color: #C4462F; }

.champ__erreur {
  display: none;
  margin-top: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: #C4462F;
}

.champ__erreur.visible { display: block; }

.form .btn { width: 100%; justify-content: center; margin-top: 6px; }

.form__legal { font-size: .82rem; color: var(--gris); margin: 16px 0 0; line-height: 1.5; }

.form__retour {
  display: none;
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: 11px;
  font-size: .95rem;
  font-weight: 600;
}

.form__retour.ok { display: block; background: rgba(176, 219, 60, .16); color: var(--anthracite); }
.form__retour.ko { display: block; background: rgba(196, 70, 47, .1); color: #C4462F; }

.pot-de-miel { display: none; }

/* ------------------------------------------------------------------ CTA --- */

.cta-final { background: var(--creme); color: var(--encre); border-top: 3px solid var(--magenta); }
.cta-final h2 { color: var(--anthracite); }
.cta-final p { color: var(--gris); max-width: 58ch; margin-inline: auto; }
.cta-final .btn--fonce { box-shadow: var(--ombre-m); }

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

/* --------------------------------------------------------------- Footer --- */

.footer {
  background: var(--anthracite-2);
  color: rgba(255, 255, 255, .68);
  padding: 64px 0 28px;
  font-size: .95rem;
}

.footer__grille {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer .logo { color: var(--blanc); margin-bottom: 18px; }
.footer .logo small { color: rgba(255, 255, 255, .55); }

.footer h4 {
  color: var(--blanc);
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--magenta); }

.footer__bas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding-top: 24px;
  font-size: .87rem;
  color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------- Barre mobile fixe --- */

.barre-mobile {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 99;
  background: var(--anthracite);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}

.barre-mobile a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 700;
}

.barre-mobile svg { width: 17px; height: 17px; }
.barre-mobile a:first-child { background: var(--magenta); color: var(--blanc); }
.barre-mobile a:last-child { background: rgba(255, 255, 255, .12); color: var(--blanc); }

/* ---------------------------------------------------------- Animations --- */

.apparait {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1);
}

.apparait.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .apparait { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* -------------------------------------------------------------- Mobile --- */

@media (max-width: 980px) {
  .hero__grille,
  .duo,
  .contact-grille { grid-template-columns: 1fr; }

  .duo__media { order: -1; aspect-ratio: 16 / 9; }
  .hero__visuel { aspect-ratio: 16 / 9; }
  .bandeau .wrap { grid-template-columns: 1fr 1fr; }
  .footer__grille { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  body { padding-bottom: 74px; }

  .burger { display: block; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px 24px 26px;
    background: var(--blanc);
    border-bottom: 1px solid var(--gris-clair);
    box-shadow: var(--ombre-m);
    transform: translateY(-130%);
    transition: transform var(--transition);
  }

  .nav.ouvert { transform: none; }
  .nav a { padding: 14px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav .btn { margin: 10px 0 0; justify-content: center; }

  .barre-mobile { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 72px; }
  .form__ligne { grid-template-columns: 1fr; gap: 0; }
  .logo img { width: 46px; height: 46px; }
  .logo span { font-size: 1.1rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .bandeau .wrap { grid-template-columns: 1fr; gap: 14px; }
  .bandeau div { justify-content: flex-start; text-align: left; }
  .footer__grille { grid-template-columns: 1fr; gap: 30px; }
  .hero__actions .btn,
  .cta-final__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================ NOS MARQUES */

/* La nav gagne un 7e lien : on la resserre avant le passage au burger */
@media (max-width: 1080px) and (min-width: 821px) {
  .nav a { padding: 10px 10px; font-size: .88rem; }
  .nav .btn { margin-left: 4px; padding: 11px 17px; }
}

/* Bande des logos partenaires, sur fond vert foncé pour unifier les marques */
.logos-marques {
  background: var(--anthracite);
  padding: 44px 0;
}
.logos-marques .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 40px;
}
.logos-marques a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 10px 16px;
  border-radius: var(--rayon);
  transition: var(--transition);
}
.logos-marques a:hover { background: rgba(255, 255, 255, .07); }
.logos-marques img {
  max-height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: .92;
  transition: var(--transition);
}
.logos-marques a:hover img { opacity: 1; }

/* Fiche détaillée d'une marque */
.marque {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--gris-clair);
}
.marque:first-of-type { border-top: 0; }

.marque__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 26px;
  background: var(--anthracite);
  border-radius: var(--rayon-l);
  box-shadow: var(--ombre-s);
}
.marque__logo img { max-width: 100%; max-height: 62px; object-fit: contain; }

.marque__corps h2 { font-size: 1.6rem; margin-bottom: .25em; }
.marque__origine {
  display: inline-block;
  margin-bottom: 1em;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--creme);
  color: var(--gris);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.marque__corps p { margin-bottom: 1em; }
.marque__corps .liste-check { margin-bottom: 1.4em; }

.marque__lien {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: var(--anthracite);
}
.marque__lien svg { width: 17px; height: 17px; flex: none; }
.marque__lien:hover { color: var(--magenta-lisible); }

@media (max-width: 820px) {
  .logos-marques .wrap { grid-template-columns: 1fr; gap: 14px; }
  .marque { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .marque__logo { min-height: 108px; }
}

/* ================================================ BANDEAU FOURNISSEURS ---
   Place entre le hero et le bandeau vert. Fond plus sombre que le hero
   pour se detacher, logos en blanc, chacun cliquable vers son fabricant. */
.bandeau-marques {
  background: var(--anthracite-2);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.bandeau-marques .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 40px;
  padding-block: 34px;
}
.bandeau-marques__titre {
  margin: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  flex: none;
}
.bandeau-marques ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 46px;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bandeau-marques li { display: flex; }
.bandeau-marques li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--rayon);
  transition: var(--transition);
}
.bandeau-marques li a:hover { background: rgba(255, 255, 255, .08); }
.bandeau-marques li img {
  height: 52px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  opacity: .9;
  transition: var(--transition);
}
.bandeau-marques li a:hover img { opacity: 1; transform: scale(1.04); }

.bandeau-marques__lien {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  font-size: .95rem;
  font-weight: 700;
  color: var(--magenta);
  white-space: nowrap;
}
.bandeau-marques__lien svg { width: 17px; height: 17px; transition: var(--transition); }
.bandeau-marques__lien:hover { color: var(--magenta-clair); }
.bandeau-marques__lien:hover svg { transform: translateX(4px); }

@media (max-width: 980px) {
  .bandeau-marques .wrap { justify-content: center; text-align: center; }
  .bandeau-marques__titre { width: 100%; }
  .bandeau-marques li img { height: 44px; max-width: 170px; }
}
@media (max-width: 560px) {
  .bandeau-marques .wrap { padding-block: 26px; gap: 16px 20px; }
  .bandeau-marques ul { gap: 12px 22px; }
  .bandeau-marques li a { padding: 8px 10px; }
  .bandeau-marques li img { height: 34px; max-width: 122px; }
}

/* ================================================== HERO PHOTO (accueil) ---
   La photo occupe tout le hero. Un voile degrade, dense a gauche ou se
   trouve le texte, garantit le contraste sans noyer la pergola a droite. */
.hero--photo { padding: calc(var(--header-h) + 96px) 0 104px; }

.hero__fond {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

/* Voile : opaque a gauche (lisibilite) -> transparent a droite (la pergola) */
.hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(24, 24, 26, .96) 0%,
      rgba(24, 24, 26, .90) 30%,
      rgba(44, 44, 48, .66) 54%,
      rgba(44, 44, 48, .28) 78%,
      rgba(44, 44, 48, .16) 100%),
    linear-gradient(to top, rgba(24, 24, 26, .55) 0%, rgba(24, 24, 26, 0) 42%);
}

/* Le contenu n'occupe plus qu'une colonne : la photo tient le reste */
.hero--photo .hero__grille { grid-template-columns: minmax(0, 640px); }
.hero--photo h1 { text-shadow: 0 2px 22px rgba(6, 24, 15, .5); }
.hero--photo .chapeau { color: rgba(255, 255, 255, .92); }

@media (max-width: 980px) {
  .hero--photo { padding: calc(var(--header-h) + 66px) 0 76px; }
  .hero__fond { object-position: 66% center; }
  /* Sur petit ecran le texte passe sur toute la largeur : voile plus dense */
  .hero--photo::after {
    background:
      linear-gradient(180deg,
        rgba(24, 24, 26, .93) 0%,
        rgba(24, 24, 26, .88) 55%,
        rgba(24, 24, 26, .80) 100%);
  }
}

/* ---------------------------------------------- Note Google dans le hero --- */
.hero__avis {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 30px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--rayon);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(3px);
}
.hero__avis-etoiles { display: flex; gap: 2px; color: #FFC531; flex: none; }
.hero__avis-etoiles svg { width: 18px; height: 18px; fill: currentColor; }

.hero__avis-note { font-weight: 800; color: var(--blanc); font-size: 1.05rem; flex: none; }
.hero__avis-nb { color: rgba(255, 255, 255, .72); font-size: .9rem; flex: none; }

.hero__avis-phrase {
  width: 100%;
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .8);
}
.hero__avis-phrase a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero__avis-phrase a:hover { color: var(--magenta-clair); }
.hero__avis-phrase svg { width: 14px; height: 14px; }

@media (max-width: 560px) {
  .hero__avis { padding: 14px 16px; gap: 10px 12px; }
  .hero__avis-phrase { font-size: .88rem; }
}
