/* ============================================================
   contact.html (문의하기) 전용 스타일 — 공통 Header/Footer를 쓰지 않는 독립 레이아웃
   ============================================================ */
.contact-page { background: var(--paper); overflow-x: hidden; min-height: 100vh; }

.contact-topbar { height: 32px; background: var(--blue); display: flex; justify-content: flex-end; }
@media (min-width: 768px) { .contact-topbar { height: 38px; } }
.contact-topbar__icons { height: 100%; background: var(--coral); display: flex; align-items: center; gap: 10px; padding: 0 16px; }
@media (min-width: 768px) { .contact-topbar__icons { gap: 18px; padding: 0 24px; } }
.contact-topbar__link {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  color: var(--paper); opacity: 0.92;
}
@media (min-width: 768px) { .contact-topbar__link { width: 28px; height: 28px; } }
.contact-topbar__link:hover { opacity: 1; background: oklch(98.5% 0.004 90 / 0.16); }

.contact-home-row { padding: 14px var(--container-pad); background: var(--paper); border-bottom: 1px solid var(--hair); }
.contact-home-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--hair); display: flex;
  align-items: center; justify-content: center; font-size: 18px; color: var(--ink);
}

.contact-grid {
  max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px;
  padding: 32px var(--container-pad) 80px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; padding: 56px var(--container-pad) 80px; } }

.contact-left { display: flex; flex-direction: column; gap: 16px; }
.contact-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--coral); text-transform: uppercase; }
.contact-heading { font-size: 24px; font-weight: 800; line-height: 1.35; color: var(--ink); margin: 0; }
@media (min-width: 768px) { .contact-heading { font-size: 30px; } }
.contact-body { font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin: 0; }
.contact-subheading { font-size: 17px; font-weight: 800; color: var(--ink); margin: 12px 0 4px; }
.contact-subheading em { font-weight: 600; font-style: italic; color: var(--ink-soft); }
.contact-topic-select {
  width: 100%; padding: 13px 14px; border: 1px solid oklch(88% 0.006 90); border-radius: 4px; font-size: 14px;
  font-weight: 600; font-family: inherit; background: var(--paper); color: var(--ink);
}
.contact-topic-desc { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); margin: 10px 0 0; min-height: 40px; }

.contact-form-card {
  background: var(--paper); border: 1px solid oklch(88% 0.006 90); border-radius: 6px; padding: 24px;
  display: flex; flex-direction: column; gap: 20px; box-shadow: 0 8px 24px oklch(20% 0.05 255 / 0.06);
}
@media (min-width: 768px) { .contact-form-card { padding: 36px; } }
.contact-form-intro { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.contact-form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .contact-form-row { grid-template-columns: 1fr 1fr; } }
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-label { font-size: 13px; font-weight: 700; color: var(--ink); }
.contact-input, .contact-select, .contact-textarea {
  padding: 12px 14px; border: 1px solid oklch(88% 0.006 90); border-radius: 4px; font-size: 14px;
  font-family: inherit; background: oklch(99% 0.002 90); color: var(--ink); width: 100%;
}
.contact-textarea { min-height: 120px; resize: vertical; }
.contact-consent-box { display: flex; flex-direction: column; gap: 8px; padding-top: 8px; border-top: 1px solid oklch(88% 0.006 90); }
.contact-consent-title { font-size: 13px; font-weight: 800; color: var(--ink); }
.contact-consent-text { font-size: 12.5px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.contact-consent-text a { color: var(--blue); }
.contact-checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink); }
.contact-submit-btn {
  align-self: flex-start; background: var(--blue); color: var(--paper); font-size: 15px; font-weight: 700;
  padding: 14px 36px; border-radius: 3px; border: none; cursor: pointer;
}

/* 카카오톡 채널 상담 플로팅 버튼 (contact.html은 독립 레이아웃이라 components.css를 안 쓰므로 여기 복제) */
.kakao-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  display: flex; align-items: center; gap: 8px;
  background: #FEE500; color: #391B1B;
  padding: 12px 18px 12px 12px; border-radius: 999px;
  box-shadow: 0 8px 20px oklch(20% 0.05 255 / 0.25);
  text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease;
}
.kakao-float:hover { transform: translateY(-2px); box-shadow: 0 12px 26px oklch(20% 0.05 255 / 0.32); }
.kakao-float__icon { width: 26px; height: 26px; flex-shrink: 0; }
.kakao-float__label { font-size: 14px; font-weight: 800; white-space: nowrap; }
@media (max-width: 480px) {
  .kakao-float { padding: 12px; }
  .kakao-float__label { display: none; }
}
