/* Site footer — shared by every page. Edit here only, never inline per page. */

.site-footer {
  width: 100%;
  margin-top: auto;
  padding-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #1a1a1a;
}

/* the rule and the row share one column, inset from the page edges */
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #1a1a1a;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-name {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.footer-locale,
.footer-legal {
  font-size: 0.9rem;
  color: #888;
}

/* legal name is rendered as registered, not lowercased like the wordmark */
.footer-legal {
  text-transform: none;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.5rem;
  font-size: 0.9rem;
}

.footer-contact a {
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-contact a:hover {
  opacity: 0.6;
}

/* keep page content from crowding the rule */
body > main {
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
  .footer-inner {
    gap: 1rem;
  }

  body > main {
    margin-bottom: 2rem;
  }
}
