footer {
  display: block;
  background: var(--charcoal, #1A1A1A);
  padding: 4rem 2.5rem 0;
  border-top: 0.5px solid rgba(184,151,90,0.15);
}
footer > .footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 0.5px solid rgba(184,151,90,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-logo {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white, #FAFAF8);
}
.footer-logo span {
  color: var(--gold, #B8975A);
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--gray, #888780);
  line-height: 1.65;
  font-weight: 300;
}
.footer-col-title {
  font-family: var(--sans, 'Inter', system-ui, sans-serif);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold, #B8975A);
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.footer-links a {
  font-size: 0.83rem;
  color: var(--gray, #888780);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--white, #FAFAF8);
}
.footer-detail {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.22);
  font-weight: 300;
}
footer > .footer-legal-landing {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid rgba(184,151,90,0.06);
  flex-wrap: wrap;
}
.fll-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.fll-left span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.18);
  font-weight: 300;
}
.fll-left a {
  color: rgba(184,151,90,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.fll-left a:hover {
  color: var(--gold, #B8975A);
}
.fll-right {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.fll-right a {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.fll-right a:hover {
  color: rgba(255,255,255,0.55);
}
footer > .footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.15);
  font-weight: 300;
}
@media (max-width: 1024px) {
  footer > .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 3rem 1.5rem 0;
  }
  footer > .footer-grid {
    grid-template-columns: 1fr;
  }
  footer > .footer-legal-landing {
    flex-direction: column;
    gap: 1rem;
  }
  .fll-right {
    gap: 1rem;
  }
}
