/* ==========================================================================
   KENSAI CANONICAL FOOTER
   Single source of truth — identical on every page.
   Taken verbatim from web/index.html, with CSS variables resolved to literal
   hex values so the footer renders identically regardless of which variables
   a given page happens to define.

   --azure  = #112231   (footer background)
   --orange = #f7b597   (column titles)

   USAGE
   1. Save as web/assets/footer.css
   2. In every page <head>:  <link rel="stylesheet" href="/assets/footer.css">
      (place it AFTER the page's own <style> block so it wins on conflicts)
   3. Delete that page's own footer rules
   4. Paste the canonical footer markup before </body>
   ========================================================================== */

footer {
  background: #112231;
  padding: 56px 56px 36px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo { display: inline-block; text-decoration: none; margin-bottom: 14px; }
.footer-brand-logo img { height: 24px; width: auto; display: block; }

.footer-tagline { font-size: 13px; color: #fff; line-height: 1.7; max-width: 260px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f7b597;
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.footer-links a { font-size: 13px; color: #fff; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 12px; color: #fff; }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: #fff; text-decoration: none; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 900px) {
  footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
