/* footer-rivieratherapie */

.site-footer {
  background: var(--color-primary);
  color: color-mix(in srgb, var(--color-background) 80%, transparent);
  padding: 64px 0 32px;
  font-size: 0.9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-background) 15%, transparent);
}
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-brand .logo-text {
  font-family: var(--font-heading);
  color: var(--color-background);
  font-size: 1.4rem;
  font-weight: 500;
}
.footer-brand .brand-tagline {
  display: block;
  color: color-mix(in srgb, var(--color-background) 60%, transparent);
}
.brand-logo-footer { height: 44px; width: auto; }
.footer-brand > p {
  margin: 0;
  max-width: 280px;
  line-height: 1.65;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--color-background) 75%, transparent);
}
.footer-col h4 {
  color: var(--color-background);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: color-mix(in srgb, var(--color-background) 78%, transparent);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--color-background) 55%, transparent);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}
