footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--outline-soft);
  max-width: 1360px;
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 48px) 40px;
}

.foot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.foot-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.foot-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin: 10px 0 0;
  max-width: 260px;
  line-height: 1.5;
}

.foot-col-title {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin: 0 0 14px;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-links a {
  font-size: 14.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.foot-links a:hover {
  color: var(--text);
}

.foot-contact a {
  font-size: 14.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.foot-contact a:hover {
  color: var(--text);
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--outline-soft);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
}
