/* ══════════════════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════════════════ */
    .footer {
      background: var(--navy);
      padding: 18px 24px;
      position: relative;
      overflow: hidden;
    }
 
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--rose), var(--gold), var(--teal), var(--rose));
    }
 
    .footer__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
 
    .footer__copy {
      font-size: 12px;
      color: rgba(255,255,255,.55);
      line-height: 1.5;
    }
 
    .footer__copy strong {
      color: rgba(255,255,255,.80);
      font-weight: 600;
    }
 
    .footer__credit {
      font-size: 12px;
      color: rgba(255,255,255,.45);
      display: flex;
      align-items: center;
      gap: 6px;
    }
 
    .footer__credit span { color: var(--rose); font-size: 14px; }
 
    .footer__credit a {
      color: rgba(255,255,255,.55);
      text-decoration: none;
      transition: color .2s;
    }
 
    .footer__credit a:hover { color: var(--gold); }
 
    .footer__deco {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
    }
 
    @media (max-width: 640px) {
      .footer__inner { flex-direction: column; text-align: center; gap: 10px; }
    }