  /* ── FOOTER ── */
  footer {
      background: var(--dark2);
      color: rgba(255, 255, 255, 0.6);
      padding: 60px 5vw 40px;
  }

  .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
  }

  .footer-brand .foot-logo {
      font-family: Nunito, sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--brand);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
  }

  .footer-brand .foot-logo img {
      width: 40px;
      height: auto;
  }

  .footer-brand .foot-logo span {
      color: #fff;
  }

  .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.75;
      max-width: 240px;
  }

  .foot-col h4 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
  }

  .foot-col ul {
      list-style: none;
  }

  .foot-col li {
      margin-bottom: 0.6rem;
  }

  .foot-col a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color .2s;
  }

  .foot-col a:hover {
      color: var(--brand);
  }

  .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.8rem;
      flex-wrap: wrap;
      gap: 0.5rem;
  }

  .footer-bottom a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      margin-left: 1.5rem;
  }

  .footer-bottom a:hover {
      color: var(--brand);
  }

.footer-bottom a.active-page {
  color: var(--brand);
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom a {
    margin-left: 0;
  }
}
