/*
 * footer.css — Footer ONLY
 * Ref: Aman footer, Passalacqua warm dark footer
 */

.site-footer {
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-lg);
}

/* ── TOP SECTION ─────────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--sp-xl);
  align-items: start;
}

/* ── BRAND ───────────────────────────────────────── */
.footer-brand {
  padding-right: var(--sp-lg);
}

.footer-logo {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-warm);
  margin-bottom: var(--sp-xs);
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--stone);
  line-height: 1.5;
}

/* ── NAV COLUMNS ─────────────────────────────────── */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.footer-nav__heading {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teak-light);
  margin-bottom: var(--sp-sm);
}

.footer-nav__col a {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(250, 248, 244, 0.65);
  padding: 4px 0;
  transition: color var(--speed) var(--ease);
}

.footer-nav__col a:hover {
  color: var(--white-warm);
  opacity: 1;
}

.footer-nav__text {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(250, 248, 244, 0.45);
  line-height: 1.7;
  margin-top: 4px;
}

/* ── DIVIDER ─────────────────────────────────────── */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(250, 248, 244, 0.08);
  margin: var(--sp-lg) 0 var(--sp-md);
}

/* ── BOTTOM BAR ──────────────────────────────────── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  color: rgba(250, 248, 244, 0.35);
  letter-spacing: 0.05em;
}

.footer-credit {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  color: rgba(250, 248, 244, 0.25);
  letter-spacing: 0.05em;
}
