/* ─────────────────────────────────────────────────────────────
   otto-footer.css — footer-ul canonic OTTO, o SINGURĂ sursă de adevăr.
   Legat ULTIMUL în <head> pe TOATE paginile (via _unify-footer.mjs), deci
   câștigă la egalitate de specificitate → footer identic peste tot.
   Valori LITERALE (nu var(--token)) intenționat: unele pagini vechi își
   definesc --dark/--orange diferit; literalele garantează același aspect.
   Scopat pe `footer.site-footer` ca să nu atingă nimic altceva.
   ───────────────────────────────────────────────────────────── */

footer.site-footer {
  background: #2A2520;
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem clamp(1.5rem, 6vw, 6rem) 2rem;
  border-radius: 30px 30px 0 0;
  margin-top: 3rem;
}
footer.site-footer .footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer.site-footer .footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
footer.site-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
footer.site-footer .footer-col h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2rem;
}
footer.site-footer .footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.7rem;
  transition: color 0.3s, padding-left 0.3s;
}
footer.site-footer .footer-col a:hover {
  color: #FF8800;
  padding-left: 6px;
}
footer.site-footer .footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}
footer.site-footer .footer-socials {
  display: flex;
  gap: 0.8rem;
}
footer.site-footer .footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}
footer.site-footer .footer-socials a:hover {
  background: #FF8800;
  border-color: #FF8800;
  transform: translateY(-2px);
}
footer.site-footer .footer-socials svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  color: #fff;
}
footer.site-footer .footer-legal {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
footer.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
footer.site-footer .footer-legal a:hover {
  color: #FF8800;
}
footer.site-footer .footer-legal a.axon-credit {
  opacity: 0.75;
}

/* Specificitate ridicată intenționat: unele pagini (ex. parteneri/*) au un
   <style> în BODY care re-vopsește footer-ul cu tema paginii (var(--rd-ink)) —
   se încarcă după acest fișier și ar câștiga la egalitate. body footer.site-footer
   (0,1,2) bate footer.site-footer (0,1,1) indiferent de ordine. */
body footer.site-footer { background: #2A2520; }

@media (max-width: 900px) {
  footer.site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  footer.site-footer .footer-grid { grid-template-columns: 1fr; }
  footer.site-footer .footer-bottom { flex-direction: column; text-align: center; }
  footer.site-footer .footer-legal { justify-content: center; }
}
