/* ==========================================================================
   Avarida Group — Footer
   Reproduces components/site/SiteFooter.tsx
   ========================================================================== */

.avarida-footer {
  background: var(--lavender-soft);
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  margin-top: 6rem;
}

.avarida-footer__inner {
  margin-inline: auto;
  max-width: var(--avarida-container);
  padding: 4rem 1.25rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .avarida-footer__inner {
    padding-inline: 2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.avarida-footer__brand img { height: 2.5rem; width: auto; display: block; }

.avarida-footer__brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 20rem;
}

.avarida-footer h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  font-family: var(--font-display);
}

.avarida-footer ul {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.avarida-footer__contact ul { gap: 0.75rem; }

.avarida-footer a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 150ms;
}

.avarida-footer a:hover { color: var(--primary); }

.avarida-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.avarida-footer__contact svg { height: 1rem; width: 1rem; flex: none; }

/* Social circles */
.avarida-footer__social {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avarida-footer__social a {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--background);
  border: 1px solid var(--border);
  transition: color 150ms, border-color 150ms;
  font-size: 0.875rem;
  font-weight: 600;
}

.avarida-footer__social a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.avarida-footer__social svg { height: 1rem; width: 1rem; }

/* Bottom bar */
.avarida-footer__bottom {
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}

.avarida-footer__bottom-inner {
  margin-inline: auto;
  max-width: var(--avarida-container);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.avarida-footer__bottom-inner p { margin: 0; }

@media (min-width: 640px) {
  .avarida-footer__bottom-inner { flex-direction: row; }
}

@media (min-width: 1024px) {
  .avarida-footer__bottom-inner { padding-inline: 2rem; }
}
