/* =====================================================
   DGF TRIVELMORRA — footer.css
   Footer Layout · Brand · Logo · Links · Certs · Copy
   ===================================================== */

footer {
  background: #060606; border-top: 1px solid #1A1A1A; padding: 48px 80px 32px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-link { display: inline-block; text-decoration: none; }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; display: block; }
.footer-brand .sub { font-size: 12px; color: var(--text-dim); max-width: 400px; line-height: 1.6; }
.footer-links { display: flex; gap: 28px; list-style: none; align-items: center; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--text-dim); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-certs {
  display: flex; gap: 24px; padding: 16px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 24px; flex-wrap: wrap;
}
.footer-certs span { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--orange); opacity: .7; }
.footer-copy { font-size: 12px; color: rgba(240,237,232,.2); }
.footer-copy a { color: rgba(240,237,232,.3); text-decoration: none; }
.footer-copy a:hover { color: var(--orange); }
