  html,
  body {
    margin: 0;
    width: 100%;
  }

  .site-footer {
    background: #0a0f0e;
    border-top: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    width: 100%;
  }

  /* ══ CORPS DU FOOTER ══ */
  .footer-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 0;
    padding: 72px 80px 64px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  /* Colonne 1 — marque */
  .footer-brand {
    padding-right: 60px;
  }
  .footer-brand-logo {
    margin-bottom: 24px;
  }
  .footer-brand-logo img {
    height: 36px; width: auto; display: block;
  }
  /* Fallback texte si pas d'image */
  .footer-brand-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: #fff;
  }
  .footer-brand-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 32px;
  }
  .footer-socials {
    display: flex;
    gap: 12px;
  }
  .footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .footer-social:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    background: rgba(255,255,255,0.06);
  }
  .footer-social svg { width: 15px; height: 15px; }

  /* Colonnes liens */
  .footer-col {
    padding: 0 24px;
    border-left: 1px solid rgba(255,255,255,0.07);
  }
  .footer-col-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-col a {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 14px; font-weight: 400;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.18s, padding-left 0.2s;
  }
  .footer-col a:hover { color: #fff; padding-left: 5px; }

  /* ══ BARRE BAS ══ */
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 80px;
    gap: 20px;
  }
  .footer-legal {
    font-family: 'Barlow', sans-serif;
    font-size: 12px; font-weight: 300;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.02em;
  }
  .footer-legal a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.18s;
  }
  .footer-legal a:hover { color: rgba(255,255,255,0.65); }
  .footer-legal-sep {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.3;
  }

  .footer-made {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
  }
  .footer-made:hover,
  .footer-made:focus-visible,
  .footer-made:active {
    color: transparent;
    background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 18px rgba(255,255,255,0.08);
  }
  .footer-made:active {
    transform: translateY(1px);
  }

  /* ══ GROS TEXTE DÉCORATIF ══ */
  .footer-wordmark {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(72px, 14vw, 200px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.85;
    color: rgba(255,255,255,0.04);
    user-select: none;
    pointer-events: none;
    /* Déborde légèrement pour remplir la largeur */
    padding: 0 0 -4px;
    overflow: hidden;
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 1024px) {
    .footer-body {
      grid-template-columns: 1fr 1fr;
      gap: 48px 0;
      padding: 56px 48px 52px;
    }
    .footer-brand { padding-right: 40px; grid-column: 1 / -1; }
    .footer-col:first-of-type { border-left: none; padding-left: 0; }
    .footer-bottom { padding: 20px 48px; }
  }

  @media (max-width: 640px) {
    .footer-body {
      grid-template-columns: 1fr;
      padding: 48px 24px 40px;
      gap: 36px;
    }
    .footer-brand { grid-column: auto; padding-right: 0; }
    .footer-col { border-left: none; padding: 0; }
    .footer-bottom {
      flex-direction: column; align-items: flex-start;
      padding: 20px 24px; gap: 8px;
    }
    .footer-wordmark { font-size: clamp(60px, 18vw, 120px); }
  }
