.promo-ticker {
  position: relative;
  z-index: 50;
  overflow: hidden;
  border-top: 1px solid rgba(199, 106, 67, 0.42);
  border-bottom: 1px solid rgba(255, 253, 248, 0.26);
  background: #182b3a;
  color: #fffdf8;
  box-shadow: inset 0 -1px rgba(10, 25, 37, 0.42);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.promo-ticker__viewport {
  overflow: hidden;
}

.promo-ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: promo-ticker-scroll 24s linear infinite;
  will-change: transform;
}

.promo-ticker__group {
  display: flex;
  flex: none;
  align-items: center;
}

.promo-ticker__item {
  flex: none;
  padding: 0.7rem 1.2rem;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.promo-ticker__divider {
  color: #efb18f;
  font-size: 0.8rem;
  font-weight: 900;
}

.promo-ticker:hover .promo-ticker__track,
.promo-ticker:focus-within .promo-ticker__track {
  animation-play-state: paused;
}

@keyframes promo-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.9fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 5vw, 4rem);
  background: #182b3a;
  color: #fffdf8;
}

.site-footer-brand {
  display: grid;
  gap: 0.7rem;
  max-width: 40rem;
}

.site-footer-brand strong {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
}

.site-footer-address {
  font-size: 0.93rem;
}

.site-footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.site-footer-contact a {
  color: #fffdf8;
  font-weight: 850;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 0.55rem 1rem;
}

.site-footer a {
  color: #fffdf8;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  text-underline-offset: 0.3em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f0bba0;
  text-decoration: underline;
}

@media (max-width: 680px) {
  .promo-ticker__item {
    padding: 0.64rem 0.85rem;
    font-size: 0.67rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-ticker__track {
    width: 100%;
    min-width: 0;
    justify-content: center;
    animation: none;
  }

  .promo-ticker__group + .promo-ticker__group {
    display: none;
  }
}
