.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 2rem 1.75rem 1.5rem;
  font-size: 0.8rem;
}

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

.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.footer-col-brand {
  flex: 1 1 auto;
}

.footer-brand-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 28rem;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
}

.footer-col {
  flex: 0 0 auto;
}

.footer-col h3 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.45;
  margin-bottom: 0.6rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-col a {
  color: var(--text);
  opacity: 0.6;
  font-size: 0.8rem;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 1.55;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.copyright {
  margin-top: 0.5rem;
}

.copyright a {
  transition: color 0.2s ease;
}

.copyright a:hover {
  color: var(--accent);
  opacity: 1;
}