/* Slim footer — nav, phone, Instagram, address (matches JSON-LD for SEO consistency) */

.site-footer {
  background: var(--ink);
  border-top: 3px solid var(--pink);
  padding: 2.6rem 5vw 1.6rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* stardust: tiny cyan + hot-pink specks in the empty black space */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
background-image:
    radial-gradient(8px 8px at 16% 40%, rgba(0, 172, 220, 0.9), transparent 80%),
    radial-gradient(8px 8px at 40% 70%, rgba(238, 42, 123, 0.85), transparent 80%),
    radial-gradient(8px 8px at 64% 28%, rgba(0, 172, 220, 0.85), transparent 80%),
    radial-gradient(8px 8px at 82% 58%, rgba(238, 42, 123, 0.85), transparent 80%),
    radial-gradient(8px 8px at 28% 88%, rgba(255, 222, 89, 0.75), transparent 80%),
    radial-gradient(8px 8px at 90% 84%, rgba(0, 172, 220, 0.8), transparent 80%);
}

/* Brutus, the BOTFIT-collared mascot, peeking from the corner */
.site-footer__mascot {
  position: absolute;
  bottom: 0;
  right: 4vw;
  width: 95px; /* +5% zoom */
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

/* Pinki fills the empty left black gutter (Brutus stays bottom-right) */
.site-footer__mascot--pinki {
  bottom: 20%;
  left: 2vw;
  width: 74px;
  transform: rotate(-8deg);
  opacity: 0.92;
}

@media (max-width: 700px) {
  /* keep Brutus (the footer image) visible on mobile, just smaller and in the
     corner; Pinki is dropped to avoid crowding the stacked footer */
  .site-footer__mascot--pinki { display: none; }
  .site-footer__mascot { width: 64px; right: 3vw; opacity: 0.95; }
  /* keep the copyright/founded text clear of Brutus in the bottom-right corner */
  .site-footer__bottom { justify-content: flex-start; gap: 0.15rem 1rem; padding-right: 76px; }
}

.site-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.site-footer__brand img {
  display: block;
  height: 26px;
  width: auto;
}

.site-footer__address {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 32ch;
  font-style: normal;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover { color: var(--yellow); }

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.site-footer__phone svg { width: 18px; height: 18px; }
.site-footer__phone:hover { color: var(--yellow); }

.site-footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer__insta:hover { color: var(--pink); }
.site-footer__insta svg { width: 18px; height: 18px; }

.site-footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (max-width: 700px) {
  .site-footer__inner { flex-direction: column; gap: 1.8rem; }
}
