/*
 * footer.css
 * Dr. Aprilia West — Site Footer
 *
 * @package daw
 */

/* ─────────────────────────────────────────────
   FOOTER WRAPPER
   ───────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 72px var(--pad-x) 40px;
}

/* ─────────────────────────────────────────────
   FOOTER TOP — 3-COLUMN GRID
   ───────────────────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(184, 150, 90, 0.12);
}

/* ─────────────────────────────────────────────
   FOOTER BRAND COLUMN
   ───────────────────────────────────────────── */
.footer-logo {
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 18px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.45);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 28px;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 150, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 242, 236, 0.5);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

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

/* ─────────────────────────────────────────────
   FOOTER NAV COLUMNS
   ───────────────────────────────────────────── */
.footer-nav-title {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.45);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-nav-list a:hover {
  color: var(--gold-light);
}

/* ─────────────────────────────────────────────
   FOOTER BOTTOM
   ───────────────────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.25);
}

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

.footer-legal a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.25);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: rgba(245, 242, 236, 0.5);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 56px var(--pad-x) 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
