/* 회사 소개 (도메인 루트) — 독립 스타일시트.
   base.css 를 부르지 않는다: 전역 svg{position:fixed}·button{height:32px} 같은
   레거시 요소 규칙이 이 페이지로 새어 들어오기 때문. 여기서 쓰는 것만 정의한다. */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fbfbfa;
  color: #1d2622;
  font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo',
               'Malgun Gothic', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.st-inner {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── 히어로 ── */
.st-hero {
  background: #162E23;
  color: #fbfbfa;
  padding-block: 72px 76px;
}

.st-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

/* 잉크 기준 viewBox 라 높이만 주면 폭은 비율대로 따라온다 */
.st-lockup .pt-mark {
  height: 26px;
  width: auto;
  flex: none;
  color: #fbfbfa;
}

.st-wordmark {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.st-headline {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.st-sub {
  margin: 16px 0 0;
  font-size: 15px;
  color: #8fae9f;
  letter-spacing: 0.01em;
}

/* ── 본문 섹션 ── */
.st-section { padding-block: 56px; }
.st-section--alt {
  background: #fff;
  border-top: 1px solid #e6e8e7;
  border-bottom: 1px solid #e6e8e7;
}

.st-eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #66736d;
  text-transform: uppercase;
}

.st-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.st-points li { font-size: 15px; color: #5d6b64; }

.st-points strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #162E23;
  margin-bottom: 3px;
}

/* ── 지점 ── */
.st-branches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.st-branches li {
  padding: 15px 0;
  border-bottom: 1px solid #eef0ef;
}

.st-branches li:last-child { border-bottom: 0; }

.st-branch-name { font-size: 15.5px; font-weight: 600; color: #162E23; }

.st-branch-meta {
  font-size: 13.5px;
  color: #66736d;
  margin-top: 2px;
}

.st-branch-meta a { text-decoration: none; }
.st-branch-meta a:hover { text-decoration: underline; }
.st-dot { margin: 0 7px; color: #b6beb9; }

/* ── 포탈 안내 ── */
.st-portal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.st-portal .st-eyebrow { margin-bottom: 8px; }
.st-portal-desc { margin: 0; font-size: 15px; color: #5d6b64; }

.st-portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  padding: 12px 22px;
  border-radius: 5px;
  background: #162E23;
  color: #fbfbfa;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}

.st-portal-link:hover { background: #2a5440; }

/* ── 푸터 — 법인 정보 (Apple 등록이 대조하는 부분) ── */
.st-foot {
  background: #f4f6f5;
  border-top: 1px solid #e6e8e7;
  padding-block: 34px 44px;
  font-size: 13px;
  color: #66736d;
}

.st-foot-company {
  font-weight: 600;
  color: #33413a;
  margin-bottom: 8px;
}

.st-foot-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  line-height: 1.9;
}

.st-foot-links { margin-top: 16px; }
.st-foot-links a { color: #5d6b64; }

@media (max-width: 600px) {
  .st-hero { padding-block: 52px 56px; }
  .st-headline { font-size: 26px; }
  .st-section { padding-block: 44px; }
  .st-portal { flex-direction: column; align-items: stretch; }
  .st-portal-link { width: 100%; }
}
