/* ═══════════════════════════════════════════════
   CANONICAL GRATIFID FOOTER — shared across all pages
   ═══════════════════════════════════════════════ */

.wix-footer {
  background: #fff;
  border-top: 1px solid #e4e4e7;
  padding: 28px 32px 0;
  font-family: 'Onest', system-ui, sans-serif;
}

.wix-footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

/* ══ ROW 1: Logo+tagline | Social icons | Email ══ */
.wix-footer-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}

/* Left: logo + tagline stacked */
.wix-footer-brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}
.wix-footer-brand svg, .wix-footer-brand img { display: block; margin-bottom: 3px; }
.wix-footer-tagline {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Center: social icons */
.wix-footer-social {
  display: flex;
  gap: 7px;
  align-items: center;
}
.wix-footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.78rem;
  transition: all 0.2s;
  text-decoration: none;
}
.wix-footer-social a:hover {
  background: #14b8a6;
  color: #fff;
  border-color: #14b8a6;
}

/* Right: email */
.wix-footer-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}
.wix-footer-email i { color: #14b8a6; font-size: 0.82rem; }
.wix-footer-email:hover { color: #14b8a6; }

/* ══ ROW 2: Page nav links ══ */
.wix-footer-row2 {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-bottom: 22px;
  border-bottom: 1px solid #e4e4e7;
}
.wix-footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}
.wix-footer-nav a {
  font-size: 1.32rem;
  color: #6b7280;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.wix-footer-nav a:hover { color: #14b8a6; }

/* ══ ROW 3: Bottom bar (below the line) ══ */
.wix-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.wix-footer-copy {
  font-size: 0.76rem;
  color: #9ca3af;
}
.wix-footer-legal { display: flex; gap: 18px; }
.wix-footer-legal a {
  font-size: 0.76rem;
  color: #9ca3af;
  transition: color 0.2s;
  text-decoration: none;
}
.wix-footer-legal a:hover { color: #14b8a6; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .wix-footer-row1 {
    flex-wrap: wrap;
    gap: 14px;
  }
  .wix-footer-nav a { font-size: 1.05rem; }
}

@media (max-width: 560px) {
  .wix-footer { padding: 22px 20px 0; }
  .wix-footer-row1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .wix-footer-nav a { font-size: 0.95rem; }
  .wix-footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .wix-footer-legal { justify-content: center; flex-wrap: wrap; }
}
