.footer {
  background: #111;
  color: white;
  padding: clamp(50px, 7vw, 80px) clamp(16px, 5vw, 60px) 25px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.footer h3,
.footer h4 {
  margin-bottom: 14px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
}

.footer p,
.footer a {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a:hover {
  color: white;
}

.footer-contact i {
  margin-right: 8px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 35px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

/* REMOVE MOBILE TAP HIGHLIGHT */

*{
    -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select{
    outline:none;
    -webkit-tap-highlight-color: transparent;
}

html{
    -webkit-touch-callout:none;
}