/* ==========================================================================
   Canonical site footer — one shared component used on every public page.
   Loaded after each page's own stylesheet, alongside navigation.css.
   The site's footer is dark/charcoal on every page today (the deliberate
   "light header / dark footer" bookend) — no theme modifier needed.
   Two-tier layout: primary nav row (matches header weight), then a fine
   rule dividing off the muted location/legal/copyright row.
   ========================================================================== */

.site-footer {
  padding: 56px 4vw 40px;
  background: #080807;
  color: #eee7dc;
  border-top: 1px solid rgba(238, 231, 220, .14);
  font-family: "Century Gothic", CenturyGothic, Arial, sans-serif;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  padding-bottom: 36px;
}

.site-footer__brand {
  display: block;
  flex-shrink: 0;
  width: clamp(280px, 20vw, 400px);
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font: 400 11px/1 "Century Gothic", CenturyGothic, Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__nav a {
  color: inherit;
  text-decoration: none;
  opacity: .82;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  opacity: 1;
}

/* Secondary tier: supporting education content, deliberately quieter than
   the primary nav row above it — a smaller label, smaller links, more
   muted colour. Sits between the primary nav and the location/legal row. */
.site-footer__group {
  padding: 22px 0;
  border-top: 1px solid rgba(238, 231, 220, .14);
}

.site-footer__group-label {
  margin: 0 0 12px;
  font: 400 9px/1.4 "Century Gothic", CenturyGothic, Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(238, 231, 220, .48);
}

.site-footer__group-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font: 400 10px/1.3 "Century Gothic", CenturyGothic, Arial, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.site-footer__group-nav a {
  color: rgba(238, 231, 220, .68);
  text-decoration: none;
}

.site-footer__group-nav a:hover,
.site-footer__group-nav a:focus-visible {
  color: #eee7dc;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(238, 231, 220, .14);
  font: 400 9px/1.6 "Century Gothic", CenturyGothic, Arial, sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(238, 231, 220, .62);
}

.site-footer__location {
  margin: 0;
}

.site-footer__copyright {
  margin: 0;
  white-space: nowrap;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin: 0;
}

.site-footer__legal a {
  color: inherit;
  text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #eee7dc;
}

.site-footer *:focus-visible {
  outline: 2px solid #d7bda3;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 44px 24px 32px;
  }

  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 28px;
  }

  .site-footer__brand {
    width: clamp(220px, 60vw, 320px);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
