/* ============================================================
   THROW — Shared site footer
   Scoped exclusively to .footer-rich and its descendants so it
   can be safely added to any existing page without affecting
   that page's existing layout.
   ============================================================ */

.footer-rich {
  background: #121517;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 28px;
  position: relative;
  z-index: 1;
  margin-top: 64px;
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #9aa1a7;
}

[data-theme="light"] .footer-rich {
  background: #121517;
  border-top-color: rgba(18,21,23,0.028);
  color: #7b8896;
}

.footer-rich .footer-rich-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-rich .footer-rich-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-rich .footer-rich-brand:hover { text-decoration: none; }

.footer-rich .footer-rich-brand-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #99231a 0%, #99231a 50%, #99231a 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.footer-rich .footer-rich-brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #99231a, #99231a, #99231a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-rich .footer-rich-blurb {
  font-size: 13px;
  color: #9aa1a7;
  line-height: 1.6;
  max-width: 260px;
  margin: 0;
}
[data-theme="light"] .footer-rich .footer-rich-blurb { color: #7b8896; }

.footer-rich .footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7b8288;
  margin: 0 0 14px;
}
[data-theme="light"] .footer-rich .footer-col-heading { color: #7b8896; }

.footer-rich .footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-rich .footer-col-links a {
  font-size: 13px;
  color: #9aa1a7;
  text-decoration: none;
  transition: color .2s;
  line-height: 1.4;
}
.footer-rich .footer-col-links a:hover {
  color: #f2efe8;
  text-decoration: none;
}
[data-theme="light"] .footer-rich .footer-col-links a { color: #7b8896; }
[data-theme="light"] .footer-rich .footer-col-links a:hover { color: #f2efe8; }

.footer-rich .footer-rich-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #7b8288;
  flex-wrap: wrap;
  gap: 8px;
}
[data-theme="light"] .footer-rich .footer-rich-bottom {
  border-top-color: rgba(18,21,23,0.028);
  color: #7b8896;
}

.footer-rich .footer-rich-bottom a {
  color: #7b8288;
  text-decoration: none;
  transition: color .2s;
}
.footer-rich .footer-rich-bottom a:hover {
  color: #d4d7d9;
  text-decoration: none;
}
[data-theme="light"] .footer-rich .footer-rich-bottom a { color: #7b8896; }
[data-theme="light"] .footer-rich .footer-rich-bottom a:hover { color: #7b8896; }

@media (max-width: 900px) {
  .footer-rich .footer-rich-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .footer-rich .footer-rich-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-rich .footer-rich-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
