/* ═══════════════════════════════════════════════
   FOOTER — Responsive
   ═══════════════════════════════════════════════ */

footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border-gold);
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* ── Logo + Brand ── */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 3px;
  flex-shrink: 0;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: var(--white-muted);
  margin-top: 4px;
}

.footer-about {
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  color: var(--white-muted);
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover { background: var(--gold); color: var(--black); }

/* ── Column headings ── */
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.5;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.footer-col ul li a:hover { color: var(--gold); }

/* ── Bottom bar ── */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 80px;
  border-top: 1px solid var(--border-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  font-weight: 400;
  color: var(--white-muted);
  letter-spacing: 0.5px;
}

.footer-copy span { color: var(--gold); }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  font-weight: 500;
  color: var(--white-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--gold); }
