.footer {
  padding: 52px 32px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-right {
  justify-content: flex-end;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.footer-links,
.footer-social {
  display: flex;
  align-items: center;
}

.footer-links {
  gap: 18px;
}

.footer-social {
  gap: 8px;
}

.footer-links a,
.footer-copy,
.footer-copy a,
.footer-social a {
  color: var(--text-secondary);
}

.footer-links a,
.footer-copy,
.footer-copy a {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-copy a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-copy a:hover,
.footer-social a:hover {
  color: var(--text);
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .footer {
    padding: 44px 20px;
  }

  .footer-inner,
  .footer-left,
  .footer-right {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-inner {
    gap: 20px;
  }

  .footer-left,
  .footer-right {
    gap: 12px;
  }

  .footer-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
}
