footer {
  background: #060e20;
  border-top: 1px solid rgba(201,162,39,0.12);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.25rem;
}

.footer-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-addr {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.footer-cert {
  color: rgba(201,162,39,0.4) !important;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
