/* =============================================================
   JT Designs — Footer
   ============================================================= */

footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--line);
  padding: 64px 0 36px;
}

/* 4-column layout: brand blurb | reach | connect | navigate */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Brand column */
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 300px;
}

/* Link columns */
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--oxblood); }

/* Bottom bar: copyright + tagline */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
}
