/* ============================================================
   resamp — Footer / components/footer.css
   ============================================================ */

.site-footer {
  position: relative;
  /* Footer runs on the dark theme — remap the semantic tokens so muted text,
     hairlines and headings are light on the dark ground (never invisible). */
  --fg: var(--bone);
  --fg-muted: rgba(244, 243, 238, .68);
  --fg-faint: rgba(244, 243, 238, .40);
  --line: var(--line-invert);
  --line-strong: rgba(255, 255, 255, .26);
  background: var(--ink);
  color: var(--bone);
  padding-top: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}
.site-footer a { color: var(--bone); }

/* Big kinetic wordmark band */
.footer-word {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(4rem, 20vw, 20rem); line-height: .82;
  letter-spacing: var(--tracking-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,243,238,.18);
  padding-block: clamp(1.5rem, 4vw, 3rem);
  user-select: none;
}

.footer-cta {
  display: grid; gap: 2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line-invert);
}
.footer-cta__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: end; }
.footer-cta h2 { font-size: var(--step-5); line-height: .98; }
.footer-cta__side { display: grid; gap: 1.2rem; justify-items: start; align-content: end; }
.footer-cta__side p { color: var(--fg-muted); }

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.footer-brand { display: grid; gap: 1.2rem; align-content: start; max-width: 34ch; }
.footer-brand .brand__logo { height: 30px; filter: brightness(0) invert(1); }
.footer-brand p { color: var(--fg-muted); font-size: var(--step-0); }
.footer-brand .clover { width: 30px; height: 30px; }

.footer-col h4 { font-size: var(--step--1); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--fg-faint); font-weight: 500; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: var(--fg-muted); transition: color var(--dur-1), padding-left var(--dur-2) var(--ease-out-expo); display: inline-block; }
.footer-col a:hover { color: var(--lime); padding-left: 6px; }

.footer-contact { display: grid; gap: .7rem; }
.footer-contact a { font-size: var(--step-1); font-weight: 500; }
.footer-contact a:hover { color: var(--lime); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-block: 1.8rem;
  border-top: 1px solid var(--line-invert);
  color: var(--fg-muted); font-size: var(--step--1);
}
.footer-bottom__legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--lime); }
.footer-socials { display: flex; gap: .5rem; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-invert);
  display: grid; place-items: center; color: var(--bone);
  transition: background var(--dur-2), color var(--dur-2), transform var(--dur-2) var(--ease-out-expo);
}
.footer-socials a:hover { background: var(--lime); color: var(--ink); transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
