.brand-mark{
    width: 100%;
    height: 100%;
    background: transparent;
    max-width: 200px;
}
.brand-mark img{
    width: 100%;
    object-fit: contain;
}
.app-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.app-badge img {
  max-width: 150px;
}
.footer-brand img{
    max-width: 200px;
    width: 100%;
}

footer .social-row{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
footer .social-icon{
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
footer .social-icon:hover,
footer .social-icon:focus-visible{
  color: #fff;
  background: var(--coral, #e86d5a);
  border-color: var(--coral, #e86d5a);
  transform: translateY(-2px);
}
footer .social-icon:focus-visible{
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 3px;
}
footer .social-icon svg{
  display: block;
  width: 15px;
  height: 15px;
}