/**
 * Site-wide marketing footer (matches home / FAQ / contact dark footer).
 * Load on pages that do not include home.css so <footer> layout is correct.
 */
:root {
  --mf-cream: #f5f1eb;
  --mf-stone: #c8bfb0;
  --mf-ink: #1a1a18;
  --mf-gold: #a8915a;
}

footer.site-marketing-footer {
  display: block;
  background: var(--mf-ink);
  padding: 4rem clamp(1.5rem, 4vw, 5rem) 2.5rem;
  margin-top: 0;
  border-top: none;
  font-size: inherit;
  color: var(--mf-stone);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 191, 176, 0.1);
}

.footer-brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--mf-cream);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 28rem;
}

.footer-brand-desc {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mf-stone);
  margin-bottom: 1.2rem;
  max-width: 28rem;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(168, 145, 90, 0.3);
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mf-gold);
}

.footer-license svg {
  width: 11px;
  height: 11px;
  stroke: var(--mf-gold);
  fill: none;
}

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mf-stone);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(200, 191, 176, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--mf-cream);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(200, 191, 176, 0.4);
  margin: 0;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(200, 191, 176, 0.4);
  margin: 0;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  footer.site-marketing-footer {
    padding: 3rem 1.5rem 2rem;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
