/* =============================================
   ASSO — Footer  (ref: notyourrose)
   White bg · minimal · left-aligned biz info
   · legal links vertical · script sig right
   ============================================= */

.site-footer {
  background: #fff;
  padding: 48px 24px 40px;
  margin-top: auto;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── 사업자 정보 블록 ── */
.footer-biz-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-biz-text p {
  margin: 0;
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  font-size: 9px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: rgba(23, 20, 18, 0.38);
  text-transform: none;
}

/* 저작권 줄 — 약간 더 옅게 */
.footer-copyright {
  margin: 0;
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(23, 20, 18, 0.28);
  margin-top: 4px;
}

/* ── 하단: 법적링크 + 시그니처 ── */
.footer-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* 법적 링크 — 세로 배치 */
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal-links a {
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 20, 18, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}
.footer-legal-links a:hover {
  color: rgba(23, 20, 18, 1);
}

/* 우측 시그니처 로고 */
.footer-sig {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: rgba(23, 20, 18, 0.18);
  letter-spacing: -0.02em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── 모바일 ── */
@media (max-width: 600px) {
  .site-footer {
    padding: 40px 20px 32px;
  }
  .footer-biz-text p,
  .footer-copyright {
    font-size: 8.5px;
  }
  .footer-legal-links a {
    font-size: 9px;
  }
  .footer-sig {
    font-size: 24px;
  }
}
