.site-footer {
  background: #1d2c34;
  color: #f6f3ec;
  font-family: Quicksand, sans-serif;
  margin-top: 2rem;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(150px, 1fr));
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3rem;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
}

.footer-logo img {
  display: block;
  width: min(100%, 190px);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  max-width: 30ch;
  margin: 1.25rem 0 1.4rem;
  color: #cbd7d8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #f6f3ec;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: #78bec9;
  color: #1d2c34;
  transform: translateY(-2px);
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: #e8c979;
  font-family: Raleway, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column nav,
.footer-contact,
.footer-hours dl {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-column a {
  color: #dbe5e5;
  line-height: 1.5;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #e8c979;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact address a {
  color: #dbe5e5;
}

.footer-hours dl {
  margin: 0;
}

.footer-hours dl div {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.footer-hours dt,
.footer-hours dd {
  margin: 0;
  color: #dbe5e5;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-hours dd {
  color: #aebfc1;
  font-size: 0.82rem;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 0.85rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(232, 201, 121, 0.65);
  border-radius: 999px;
  color: #e8c979 !important;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-button:hover,
.footer-button:focus-visible {
  background: #e8c979;
  color: #1d2c34 !important;
  text-decoration: none !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebfc1;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #aebfc1;
  text-decoration: none;
}

.footer-heart {
  margin-left: 0.25rem;
  color: #e87373;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-hours {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-hours {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.15rem;
    padding: 2.5rem 1.15rem 2.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.15rem;
  }

  .footer-logo img {
    width: 160px;
  }

  .footer-tagline {
    max-width: 34ch;
  }

  .footer-hours dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.15rem;
    width: 100%;
  }

  .footer-column a,
  .footer-contact address a {
    overflow-wrap: anywhere;
  }

  .footer-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-social a {
    transition: none;
  }
}