footer {
  position: relative;
  padding: 5.5rem 3rem 2.5rem;
  border-top: 1px solid rgba(245,240,232,.05);
  overflow: hidden;
}

#footer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  max-width: 1380px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -.02em;
  margin-bottom: .9rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: .3rem;
}
.footer-brand-sub {
  font-size: 1rem;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
}

.footer-tagline {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.fsoc {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  padding: .3rem .8rem;
  border: 1px solid rgba(107,101,96,.2);
  border-radius: 2rem;
}
.fsoc:hover { color: var(--orange); border-color: rgba(255,77,0,.3); }

.footer-col-head {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: .85rem;
  opacity: .55;
  transition: opacity .2s, color .2s;
}
.footer-links a:hover { opacity: 1; color: var(--orange); }

.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 3.5rem auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(245,240,232,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy  { font-size: .7rem; color: var(--muted); letter-spacing: .08em; }
.footer-credit { font-size: .7rem; color: var(--muted); }
.footer-credit span { color: var(--orange); }
