/* footer.css — black footer with ghost wordmark (design v2) */

.site-footer {
  margin: var(--panel-gap) var(--panel-inset) var(--panel-inset);
}

.footer-panel {
  background: var(--black);
  color: #d9d6cf;
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 4rem) 1rem;
  overflow: hidden;
}

.footer-top {
  max-width: var(--inner);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top h2 {
  color: #fff;
  max-width: 18ch;
}

.footer-top .footer-contact {
  font-size: 0.92rem;
  display: grid;
  gap: 0.3rem;
}

.footer-contact a { color: var(--red); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

.footer-grid {
  max-width: var(--inner);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  padding-block: 2.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #a29e96;
  max-width: 32ch;
  margin-top: 0.6rem;
}

.footer-brand__name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7c7972;
  margin-bottom: 0.9rem;
}

.footer-col ul { display: grid; gap: 0.45rem; }

.footer-col a {
  color: #d9d6cf;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-legal {
  max-width: var(--inner);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  color: #8a867e;
}

/* Ghost wordmark at the very bottom */
.footer-ghost {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10.5vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  user-select: none;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
