/* =============================================================
   FOOTER — Custom overrides for Bootstrap
   ============================================================= */

.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 236, 0.85);
  padding: 56px 0 0;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 0.85rem;
  color: rgba(250, 246, 236, 0.6);
  max-width: 32ch;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-left: 0;
}
.footer-socials li { list-style: none; }
.footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(250, 246, 236, 0.06);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  color: rgba(250, 246, 236, 0.8);
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--amber);
  color: var(--ink);
}

.footer-col h3 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  padding-left: 0;
  margin: 0;
}
.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(250, 246, 236, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--amber); }

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(250, 246, 236, 0.7);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact a {
  color: rgba(250, 246, 236, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: var(--amber); }

.footer-cta-col p {
  font-size: 0.85rem;
  color: rgba(250, 246, 236, 0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}
.footer-cta-col .btn-amber {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.08);
  padding: 18px 0;
  font-size: 0.75rem;
  color: rgba(250, 246, 236, 0.5);
  margin-top: 40px;
}
.footer-bottom p {
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .site-footer {
    padding: 40px 0 0;
  }
  
  .footer-about {
    max-width: 100%;
  }
  
  .footer-col h3 {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 0 0;
  }
  
  .site-footer .row.g-5 {
    --bs-gutter-y: 1.5rem;
  }
  
  .site-footer .row.g-5 > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .site-footer .row.g-5 > .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* CTA column - full width on mobile */
  .site-footer .row.g-5 > .col-lg-3:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 246, 236, 0.08);
  }
  
  .footer-logo {
    width: 42px;
    height: 42px;
  }
  
  .footer-about {
    font-size: 0.8rem;
  }
  
  .footer-col h3 {
    font-size: 0.7rem;
    margin-bottom: 12px;
    margin-top: 4px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    font-size: 0.82rem;
  }
  
  .footer-contact p {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  
  .footer-cta-col p {
    font-size: 0.8rem;
  }
  
  .footer-cta-col .btn-amber {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    padding: 14px 0;
    font-size: 0.7rem;
    margin-top: 30px;
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  
  .footer-socials a {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 24px 0 0;
  }
  
  .site-footer .row.g-5 {
    --bs-gutter-y: 1rem;
  }
  
  .site-footer .row.g-5 > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .site-footer .row.g-5 > .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* CTA column - full width on mobile */
  .site-footer .row.g-5 > .col-lg-3:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(250, 246, 236, 0.08);
  }
  
  .footer-logo {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
  
  .footer-about {
    font-size: 0.75rem;
  }
  
  .footer-socials {
    gap: 6px;
    margin-top: 12px;
  }
  
  .footer-socials a {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  
  .footer-col h3 {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
  
  .footer-links li {
    margin-bottom: 6px;
  }
  
  .footer-links a {
    font-size: 0.78rem;
  }
  
  .footer-contact p {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }
  
  .footer-cta-col p {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  
  .footer-cta-col .btn-amber {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  
  .footer-bottom {
    padding: 12px 0;
    font-size: 0.65rem;
    margin-top: 24px;
  }
}