/* ============================================
   Footer Styles
   ============================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--background);
  color: var(--foreground);
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.footer-bg-1,
.footer-bg-2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-bg-1 {
  background: radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.10), transparent 55%);
}

.footer-bg-2 {
  background: radial-gradient(circle at 85% 100%, rgba(212, 175, 55, 0.08), transparent 50%);
}

.footer-inner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(12, 1fr); }
}

@media (min-width: 1024px) {
  .footer-col-4 { grid-column: span 4; }
  .footer-col-2 { grid-column: span 2; }
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.625;
  max-width: 20rem;
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

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

.footer-social svg {
  width: 1rem;
  height: 1rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
  transition: color 0.2s;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom .tagline {
  color: rgba(212, 175, 55, 0.8);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}