/* Site footer, shared across every prototype page.
 *
 * Production information architecture, restyled to the dark editorial
 * aesthetic. 4 columns on desktop (Brand · For Job Seekers · Resources
 * · Company), social icons, App Store + Play badges as text links
 * (kept off-graphic so the colourful badges don't fight the dark
 * register), bottom copyright strip.
 */

/* The .foot class from earlier was the tiny 1-line footer. Rename
 * to .site-foot to avoid collision; keep .foot for any prototype
 * pages that still use the slim variant (none after this rollout). */

.site-foot {
  border-top: 1px solid var(--border-subtle);
  padding: clamp(48px, 7vh, 96px) var(--sp-5) var(--sp-5) var(--sp-5);
  background: var(--bg);
  margin-top: auto;
}

.site-foot__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 900px) {
  .site-foot__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
  }
}
@media (max-width: 560px) {
  .site-foot__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* Brand column */
.site-foot__brand .wordmark {
  margin-bottom: var(--sp-4);
}
.site-foot__tagline {
  font-family: var(--font-system);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 var(--sp-4) 0;
  max-width: 36ch;
}

/* Social icons */
.site-foot__social {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.site-foot__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--muted);
  transition: color 120ms ease, border-color 120ms ease, background-color 120ms ease;
}
.site-foot__social a:hover {
  color: var(--magenta);
  border-color: var(--magenta);
  background: rgba(233, 30, 140, 0.06);
}
.site-foot__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Link columns (For Job Seekers, Resources, Company) */
.site-foot__col h4 {
  font-family: var(--font-system);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 var(--sp-3) 0;
}

.site-foot__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.site-foot__col a {
  font-family: var(--font-system);
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 120ms ease;
}
.site-foot__col a:hover { color: var(--text); }

/* Bottom strip */
.site-foot__bottom {
  max-width: 1280px;
  margin: clamp(48px, 7vh, 96px) auto 0 auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-system);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
@media (max-width: 560px) {
  .site-foot__bottom {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }
}
