@charset "UTF-8";

/* Base imports */
@import url("global-tokens.css");

/* ===================== FOOTER ===================== */

footer.primary-footer {
  background: var(--burgundy);        /* your brand background */
  color: var(--reiki);                /* your footer text color */
  padding: 3rem 1.5rem;
}

/* ---------- FOOTER GRID ---------- */
.primary-footer-inner {
  width: 90%;                         /* responsive, not fixed px */
  max-width: 1400px;                  /* safe cap but layout stays responsive */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

/* ---------- COLUMN TITLES ---------- */
.primary-footer-col > strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--reiki);
  font-weight: 700;
}

/* ---------- LIST RESET ---------- */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 6px;
}

/* ============================================================
   LINK STYLING — CLEAR LINKS, NO UNDERLINES
============================================================ */

footer.primary-footer a {
  color: var(--lilac);            /* clear clickable link color */
  text-decoration: none;
  font-weight: 600;
  transition: color .25s ease;
}

footer.primary-footer a:hover,
footer.primary-footer a:focus-visible {
  color: var(--lilac);                /* your lilac hover */
}

/* ---------- COPYRIGHT AREA ---------- */
.footer-copyright {
  grid-column: 1 / -1;                /* span full width */
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--reiki);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .primary-footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .primary-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;               /* gently center mobile layout */
  }

  .primary-footer-col > strong {
    text-align: center;
  }
}