/* ─────────── FOOTER ─────────── */
    footer {
      background:#0d2b1a; color:rgba(255,255,255,.55);
      padding:3rem 2rem;
      border-top:3px solid var(--green-mid);
    }
    .footer-inner {
      max-width:1100px; margin:0 auto;
      display:flex; gap:2rem; align-items:center; justify-content:space-between; flex-wrap:wrap;
    }
    .footer-brand a {
      text-decoration:none; font-family:'Baloo 2',sans-serif; font-weight:900;
      font-size:1.2rem; color:#fff; display:flex; align-items:center; gap:.5rem;
    }
    .footer-nav { display:flex; gap:1.5rem; flex-wrap:wrap; }
    .footer-nav a { color:rgba(255,255,255,.55); text-decoration:none; font-size:.88rem; font-weight:600; transition:color .2s; }
    .footer-nav a:hover { color:var(--amber); }
    .footer-copy { font-size:.8rem; opacity:.5; }
    .footer-meta { text-align: right; }
    .footer-contact {
      font-size: .8rem;
      margin: 0.2rem 0 0;
      opacity: .65;
    }
    .footer-contact a {
      color: rgba(255,255,255,.75);
      text-decoration: none;
      font-weight: 600;
    }
    .footer-contact a:hover { color: var(--amber); }
    @media (max-width: 768px) {
      .footer-meta { flex: 1 1 100%; text-align: center; margin-top: 0.75rem; }
    }
