/* ============================================================
   FOOTER.CSS
   ============================================================ */

#footer {
  background: var(--navy);
  border-top: 2px solid rgba(201,169,110,0.22);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  padding-bottom: 48px;
}

/* ---- Left Column ---- */
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer-legal {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
  line-height: 1.5;
}

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

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.footer-social-btn svg {
  width: 17px;
  height: 17px;
}

/* ---- Center Column ---- */
.footer-nav-overline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  transition: color var(--transition);
}

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

/* ---- Right Column ---- */
.footer-contact-overline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
}

.footer-contact-item .icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 15px;
  width: 18px;
  text-align: center;
  line-height: 1.45;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--white);
}

/* ---- Bottom Bar ---- */
.footer-bottom-wrap {
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
}

.footer-bottom {
  padding: 20px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-bottom-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-left {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding-bottom: 36px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-nav-links {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-contact-item .icon {
    display: none;
  }

  .footer-bottom {
    padding: 18px clamp(20px, 4vw, 40px);
  }

  .footer-tagline {
    font-size: 14px;
  }
}
