/* Newve Clinic — Footer (skinmdlab tone)
 * 4-column: Clinic | Hours | Treatments | Contact+Legal
 * Dark background, gold accents
 */

.nt-footer {
  background: var(--newve-dark, #121212);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.nt-footer__inner {
  max-width: var(--newve-container-base, 1280px);
  margin: 0 auto;
  padding: 0 var(--newve-pad-desktop, 15px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Logo */
.nt-footer__logo {
  font-family: var(--newve-font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--newve-white);
  margin-bottom: 8px;
}

.nt-footer__tagline {
  color: var(--newve-primary);
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 16px;
}

.nt-footer__address {
  font-style: normal;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.nt-footer__legal-info {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* Column headings */
.nt-footer h4 {
  font-family: var(--newve-font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--newve-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.nt-footer__kst {
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: none;
  letter-spacing: 0;
}

/* Lists */
.nt-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.nt-footer li {
  margin-bottom: 8px;
}
.nt-footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.nt-footer a:hover {
  color: var(--newve-primary);
}

/* Treatments — 2-column grid */
.nt-footer__treatments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

/* Paragraphs */
.nt-footer p {
  margin: 0 0 12px;
}
.nt-footer__muted {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* Bottom bar */
.nt-footer__bottom {
  max-width: var(--newve-container-base, 1280px);
  margin: 48px auto 0;
  padding: 24px var(--newve-pad-desktop, 15px);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.nt-footer__bottom p { margin: 0 0 8px; }
.nt-footer__disclaimer {
  font-size: 11px;
  max-width: none;
  margin: 8px auto 0;
  line-height: 1.5;
  white-space: normal;
}

/* Responsive */
@media (max-width: 991px) {
  .nt-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  .nt-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .nt-footer { padding: 32px 0 0; }
  .nt-footer__inner > div:first-child {
    grid-column: 1 / -1;
  }
  .nt-footer h4 { font-size: 12px; margin-bottom: 10px; }
  .nt-footer p { font-size: 13px; margin-bottom: 8px; }
  .nt-footer li { margin-bottom: 6px; font-size: 13px; }
  .nt-footer__address { font-size: 13px; margin-bottom: 12px; }
  .nt-footer__legal-info { font-size: 11px; }
  .nt-footer__bottom { padding: 16px var(--newve-pad-mobile, 20px); margin-top: 24px; }
}

/* Language / official-site line (한영 안내 + 공식 사이트 인식) */
.nt-footer__official {
  font-size: 12px;
  color: var(--newve-black-09, #999);
  margin: 0 0 8px;
}
.nt-footer__official a {
  color: var(--newve-gold, #bda363);
  text-decoration: none;
  margin-left: 8px;
  font-weight: 500;
}
.nt-footer__official a:hover { text-decoration: underline; }
