.footer-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-col h4 {
      margin-bottom: 25px;
      color: var(--gold);
    }

    .footer-col a {
      display: block;
      color: var(--gray);
      margin-bottom: 12px;
      transition: 0.3s;
    }

    .footer-col a:hover {
      color: var(--gold);
    }

    .copyright {
      text-align: center;
      color: var(--gray);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 30px;
    }