 /* FOOTER */
.custom-footer{

    --navy:#1a1f2e;
    --navy-light:#252c3d;
    --gold:#b8965a;
    --gold-light:#d4af7a;
    --gold-pale:#f0e4cc;
    --cream:#faf7f2;
    --white:#ffffff;
    --gray:#6b7280;
    --gray-light:#e8e2d9;

    --font-serif:'Playfair Display', Georgia, serif;
    --font-sans:'Lato', sans-serif;

    font-family:var(--font-sans);
}

  footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 7vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-weight: 300; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; font-weight: 400; }
  .footer-links a:hover { color: var(--gold-light); }