.azelys footer {
  background: var(--navy);
  padding: 64px 80px 36px;
  border-top: 3px solid var(--gold);
}

/* Logo */
.azelys .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .04em;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.azelys .footer-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Brand text */
.azelys .footer-brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  max-width: 260px;
}

/* Columns */
.azelys .footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.azelys .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.azelys .footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}

.azelys .footer-col ul li a:hover {
  color: white;
}

/* Divider */
.azelys .footer-divider {
  border-color: rgba(255,255,255,.1);
  margin: 48px 0 32px;
}

/* Footer bottom */
.azelys .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}

.azelys .footer-bottom-credit {
  display: flex;
  flex-direction: column;
}

.azelys .footer-bottom-links {
  display: flex;
  gap: 24px;
}

.azelys .footer-bottom-links a {
  text-decoration: none;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}

.azelys .footer-bottom-links a:hover {
  color: rgba(255,255,255,.7);
}

/* Footer responsive */
@media (max-width: 991px) {
  .azelys footer { padding: 48px 32px 28px; }
}

@media (max-width: 767px) {
  .azelys footer { padding: 40px 20px 24px; }

  .azelys .footer-bottom {
		flex-direction: column;
		text-align: center;
	}

  .azelys .footer-bottom-links {
		justify-content: center;
		margin-top: 10px;
	}
}