/* ── 플래드 허브 공통 스타일 — 현 원페이지 토큰 그대로 (site/index.html 계승) ── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #FFFFFF; }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, sans-serif;
  color: #171512;
  word-break: keep-all;
}
a { color: #171512; text-decoration: none; }
a:hover { color: #0000FF; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ── 네비게이션 ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 32px; font-size: 14px; font-weight: 500;
  border-bottom: 1px solid #D9D3C9;
}
.nav-left { display: flex; align-items: center; gap: 28px; }
.nav-right { display: flex; gap: 28px; }
.nav img { width: 30px; height: 30px; display: block; }

/* ── 섹션 헤드 (라벨 + 번호) ── */
.sec-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 32px; border-bottom: 1px solid #D9D3C9; border-top: 1px solid #171512;
}
.sec-head .label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: #7A736A; }
.sec-head .num { font-size: 13px; color: #7A736A; }

/* ── 창구 버튼 2종 ── */
.gate-row { display: flex; flex-wrap: wrap; gap: 12px; }
.gate-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 700; border: 1px solid #171512;
}
.gate-btn.primary { background: #0000FF; border-color: #0000FF; color: #FFFFFF; }
.gate-btn.primary:hover { background: #0000CC; color: #FFFFFF; }
.gate-btn:hover { color: #0000FF; border-color: #0000FF; }
.gate-note { font-size: 13px; color: #7A736A; }

/* ── 표 (사양표) ── */
.spec-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.spec-table th, .spec-table td {
  text-align: left; padding: 14px 16px; border-bottom: 1px solid #D9D3C9;
  vertical-align: top; line-height: 1.6;
}
.spec-table th { width: 130px; font-size: 12px; letter-spacing: 0.08em; color: #7A736A; font-weight: 700; white-space: nowrap; }

/* ── 다크 컨택/푸터 ── */
#contact { background: #171512; color: #F4F1EC; padding: 96px 32px 48px; }
#contact h2 {
  margin: 0 0 64px; font-size: clamp(36px, 6vw, 84px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.1;
}
#contact h2 .dot { color: #0000FF; }
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start;
  border-top: 1px solid rgba(244,241,236,0.25); padding-top: 48px;
}
.info-col { display: flex; flex-direction: column; }
.info-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(244,241,236,0.15); align-items: baseline;
}
.info-row .label { font-size: 12px; letter-spacing: 0.1em; color: #7A736A; font-family: monospace; }
.info-row a { color: #F4F1EC; font-size: 18px; font-weight: 600; }
.info-row a:hover { color: #6E6EFF; }
.info-row .val { font-size: 16px; line-height: 1.6; color: #D8D2C8; }
.info-row .tels { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.cta-col { display: flex; flex-direction: column; gap: 20px; }
.cta-col > p { margin: 0; font-size: 16px; line-height: 1.7; color: #A79F93; }
.cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.kakao-btn {
  background: #FEE500; color: #191919; font-size: 16px; font-weight: 700;
  padding: 13px 32px; border-radius: 999px;
}
.kakao-btn:hover { background: #F5DC00; color: #191919; }
.sns {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid rgba(244,241,236,0.35); border-radius: 50%;
}
.sns:hover { border-color: #6E6EFF; }
.sns img { width: 20px; height: 20px; }
.footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  margin-top: 80px; font-size: 13px; color: #7A736A;
}
.footer a { color: #7A736A; }
.footer a:hover { color: #6E6EFF; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  #contact { padding-left: 20px; padding-right: 20px; }
  .spec-table th { width: 96px; }
}
