/* ================================================
   CLOSING + FOOTER
   ================================================ */
#closing {
  padding: var(--pad-y) var(--pad-x);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.closing-left {
  border: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--surface);
  border-top: 3px solid #3EA5AC;
}
.closing-left p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.85;
  margin-top: 16px;
}

/* ── Footer ── */
footer {
  padding: var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-left .fname {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.footer-left .finfo {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.9;
  font-weight: 400;
}

.footer-right {
  font-size: 11px;
  color: var(--text-3);
  line-height: 2;
  font-weight: 400;
}

/* ── Desktop ── */
@media (min-width: 768px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-right { text-align: right; }
}
