@charset "UTF-8";
/* ============================================
   서브페이지 전용 스타일
============================================ */
/* ===== SUB VISUAL ===== */
.sub-visual {
  position: relative;
  width: 100%;
  height: 320px;
  background:
    linear-gradient(rgba(20, 25, 35, 0.55), rgba(20, 25, 35, 0.55)),
    url("../image/sub/sub_visual_default.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
/* 카테고리별 서브 비주얼 배경 (필요시 클래스 추가) */
.sub-visual.about {
  background-image:
    linear-gradient(rgba(20, 25, 35, 0.55), rgba(20, 25, 35, 0.55)),
    url("../image/sub/sub_visual_about.jpg");
}
.sub-visual.service {
  background-image:
    linear-gradient(rgba(20, 25, 35, 0.55), rgba(20, 25, 35, 0.55)),
    url("../image/sub/sub_visual_service.jpg");
}
.sub-visual.labor {
  background-image:
    linear-gradient(rgba(20, 25, 35, 0.55), rgba(20, 25, 35, 0.55)),
    url("../image/sub/sub_visual_labor.jpg");
}
.sub-visual.consult {
  background-image:
    linear-gradient(rgba(20, 25, 35, 0.55), rgba(20, 25, 35, 0.55)),
    url("../image/sub/sub_visual_consult.jpg");
}
.sub-visual.partner {
  background-image:
    linear-gradient(rgba(20, 25, 35, 0.55), rgba(20, 25, 35, 0.55)),
    url("../image/sub/sub_visual_partner.jpg");
}
.sub-visual-inner .label {
  color: #d4b88a;
  font-size: 0.7em;
  letter-spacing: 0.4em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sub-visual-inner h2 {
  font-size: 2.6em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.sub-visual-inner .deco-line {
  width: 40px;
  height: 2px;
  background: #b89968;
  margin: 22px auto 0;
}
/* ===== BREADCRUMB ===== */
.breadcrumb-area {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.78em;
  color: #999;
}
.breadcrumb-inner a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}
.breadcrumb-inner a:hover {
  color: #b89968;
}
.breadcrumb-inner .home-icon {
  color: #666;
  font-size: 14px;
}
.breadcrumb-inner .sep {
  color: #ddd;
  font-size: 10px;
}
.breadcrumb-inner .current {
  color: #3d3830;
  font-weight: 600;
}
/* ===== SUB CONTENTS LAYOUT ===== */
.sub-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  min-height: 600px;
}
/* ===== SIDEBAR ===== */
.sidebar {
  flex: 0 0 240px;
  width: 240px;
  background: #fff;
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.sidebar-top {
  background: #3d3830;
  color: #fff;
  padding: 38px 25px;
  text-align: center;
}
.sidebar-top .label {
  color: #d4b88a;
  font-size: 0.65em;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 10px;
}
.sidebar-top h3 {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.3;
}
.sidebar-menu {
  list-style: none;
  border: 1px solid #eee;
  border-top: none;
}
.sidebar-menu li {
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-menu li:last-child {
  border-bottom: none;
}
.sidebar-menu a {
  display: block;
  padding: 18px 25px;
  color: #555;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: all 0.2s;
  position: relative;
}
.sidebar-menu a:hover {
  background: #faf7f1;
  color: #3d3830;
  padding-left: 30px;
}
.sidebar-menu li.active a {
  background: #faf7f1;
  color: #3d3830;
  font-weight: 700;
}
.sidebar-menu li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #b89968;
}
.sidebar-menu li.active a::after {
  content: "›";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #b89968;
  font-size: 22px;
  font-weight: 700;
}
/* ===== 사이드바 하단 CTA - 다크 브라운 카드 (active 메뉴와 구분) ===== */
.sidebar-cta {
  background: linear-gradient(155deg, #4a3d2e 0%, #3d3830 100%);
  padding: 28px 22px 26px;
  text-align: center;
  margin-top: 14px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
/* 골드 액센트 - 좌측 상단 미세한 장식 */
.sidebar-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b89968 0%, #d4b88a 50%, #b89968 100%);
}
/* 우측 상단 미세한 골드 원형 장식 */
.sidebar-cta::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: rgba(212, 184, 138, 0.07);
  border-radius: 50%;
}
.sidebar-cta .label {
  position: relative;
  color: #d4b88a;
  font-size: 0.62em;
  letter-spacing: 0.25em;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sidebar-cta .tel {
  position: relative;
  font-size: 1.35em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.sidebar-cta .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  background: #b89968;
  color: #fff;
  font-size: 0.85em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.25s;
  line-height: 1;
  height: auto;
  letter-spacing: 0.02em;
}
.sidebar-cta .btn:hover {
  background: #d4b88a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 153, 104, 0.4);
}
/* ===== 본문 영역 ===== */
.sub-content {
  flex: 1;
  min-width: 0;
  padding: 60px 0 100px;
}
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 25px;
  border-bottom: 2px solid #3d3830;
  margin-bottom: 50px;
  gap: 20px;
}
.page-header h1 {
  font-size: 2.2em;
  font-weight: 700;
  color: #222;
}
.page-header h1 .accent {
  color: #b89968;
}
.page-header .sub-info {
  font-size: 0.75em;
  color: #888;
  white-space: nowrap;
  display: none;
}
.page-header .sub-info span {
  color: #b89968;
  font-weight: 600;
}
/* ===== 콘텐츠 블록 (공통) ===== */
.content-block {
  margin-bottom: 60px;
}
.content-block:last-child {
  margin-bottom: 0;
}
.content-block h4 {
  font-size: 1.4em;
  font-weight: 700;
  color: #3d3830;
  margin-bottom: 25px;
  padding-left: 18px;
  position: relative;
  letter-spacing: -0.02em;
}
.content-block h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 6px;
  width: 4px;
  background: #b89968;
}
.content-block .lead {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 1.2;
}
.content-block .lead .accent {
  color: #b89968;
  font-weight: 700;
}
.content-block p {
  color: #666;
  line-height: 1.9;
  font-size: 0.95em;
  margin-bottom: 14px;
}
.content-block p strong {
  font-size: 1.2em;
}
.content-block p:last-child {
  margin-bottom: 0;
}
/* ===== 하이라이트 박스 (3컬럼) ===== */
.highlight-box {
  background: #faf7f1;
  border-radius: 8px;
  padding: 40px 40px;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.highlight-item {
  text-align: center;
  position: relative;
}
.highlight-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(184, 153, 104, 0.25);
}
.highlight-item .num {
  font-size: 0.65em;
  color: #b89968;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.highlight-item .title {
  font-size: 1.15em;
  font-weight: 700;
  color: #3d3830;
  margin-bottom: 10px;
}
.highlight-item .desc {
  font-size: 0.8em;
  color: #777;
  line-height: 1.7;
}
/* ===== 서비스 카드 그리드 ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 10px;
}
.service-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 35px 30px;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
}
.service-card:hover {
  border-color: #b89968;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}
.service-card .num {
  font-size: 0.65em;
  color: #b89968;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.service-card .title {
  font-size: 1.2em;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.service-card .desc {
  font-size: 0.85em;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card .more {
  font-size: 0.75em;
  color: #b89968;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card .more:hover {
  gap: 12px;
}
/* ===== 프로세스 스텝 ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 30px 0;
}
.step-item {
  text-align: center;
  padding: 30px 15px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  position: relative;
}
.step-item .step-num {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #3d3830;
  color: #d4b88a;
  border-radius: 50%;
  font-size: 0.85em;
  font-weight: 700;
  margin: 0 auto 15px;
  letter-spacing: 0.05em;
}
.step-item .step-title {
  font-size: 0.95em;
  font-weight: 700;
  color: #3d3830;
  margin-bottom: 8px;
}
.step-item .step-desc {
  font-size: 0.78em;
  color: #888;
  line-height: 1.6;
}
/* ===== 인사말 (CEO Greeting) ===== */
.greeting-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: stretch;
  margin: 10px 0 50px;
}
.greeting-image {
  width: 100%;
  height: 460px;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.greeting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.greeting-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a3d2e 0%, #3d3830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 184, 138, 0.4);
  font-size: 0.9em;
  letter-spacing: 0.2em;
}
.greeting-text {
  padding: 10px 0;
}
.greeting-text .label {
  color: #b89968;
  font-size: 0.7em;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.greeting-text h3 {
  font-size: 1.8em;
  font-weight: 700;
  color: #222;
  line-height: 1.45;
  margin-bottom: 35px;
  letter-spacing: -0.025em;
}
.greeting-text h3 .accent {
  color: #b89968;
}
.greeting-text p {
  color: #555;
  line-height: 1.95;
  font-size: 0.95em;
  margin-bottom: 18px;
}
.greeting-text p:last-of-type {
  margin-bottom: 0;
}
/* ===== 대표 서명 영역 ===== */
.ceo-signature {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.ceo-signature .role {
  font-size: 0.8em;
  color: #b89968;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.ceo-signature .name {
  font-size: 1.4em;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.26em;
}
.ceo-card {
  display: flex;
  flex-direction: column;
}
/* ===== 구성원 페이지 (Members) ===== */
/* 그룹 탭 - 스크롤 없이 자연스럽게 줄바꿈 */
.members-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 50px;
}
.members-tab {
  padding: 16px 28px;
  font-size: 1em;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.members-tab:hover {
  color: #3d3830;
}
.members-tab.active {
  color: #3d3830;
  font-weight: 700;
  border-bottom-color: #b89968;
}
/* 지사별 그룹 */
.members-group {
  display: none;
}
.members-group.active {
  display: block;
}
.members-group-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #3d3830;
  margin-bottom: 30px;
  padding-left: 18px;
  position: relative;
  letter-spacing: -0.02em;
}
.members-group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 6px;
  width: 4px;
  background: #b89968;
}
/* 구성원 그리드 */
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 25px;
  margin-bottom: 30px;
}
.member-card {
  text-align: center;
}
.member-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: radial-gradient(circle, #e6ded4 0%, #c8bcad 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  cursor: default;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.member-photo.has-detail {
  cursor: pointer;
}
.member-photo.has-detail:hover img {
  transform: scale(1.05);
}
/* 상세보기 호버 오버레이 */
.member-photo.has-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(61, 56, 48, 0);
  transition: background 0.3s;
  pointer-events: none;
}
.member-photo.has-detail::before {
  content: "상세보기 +";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.member-photo.has-detail:hover::after {
  background: rgba(61, 56, 48, 0.55);
}
.member-photo.has-detail:hover::before {
  opacity: 1;
}
/* 사진 placeholder */
.member-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a3d2e 0%, #3d3830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 184, 138, 0.4);
  font-size: 0.75em;
  letter-spacing: 0.2em;
}
.member-info .name {
  font-size: 1.1em;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.member-info .position {
  font-size: 0.82em;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.member-info .position .badge {
  display: inline-block;
  background: #faf7f1;
  color: #b89968;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.9em;
  margin-right: 4px;
}
/* ===== 모달 (구성원 상세) - 이전 디자인 + 사진 여백 ===== */
.member-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 25, 0.75);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.member-modal.active {
  opacity: 1;
  visibility: visible;
}
/* 모달 inner */
.member-modal-inner {
  background: #fff;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  display: flex;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.member-modal.active .member-modal-inner {
  transform: translateY(0);
}
/* ===== 사진 영역 - 베이지 배경 + 사진에 상하좌우 여백 ===== */
.member-modal-photo {
  flex: 0 0 320px;
  width: 320px;
  height: 520px; /* 고정 높이 - 콘텐츠와 비례 */
  align-self: flex-start;
  position: sticky;
  top: 0;
  overflow: hidden;
  padding: 35px 32px; /* 상하좌우 여백 */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 사진 wrapper - 실제 이미지/placeholder 담는 박스 (3:4 비율) */
.member-modal-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: radial-gradient(circle, #e6ded4 0%, #c8bcad 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.member-modal-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* 사진 placeholder */
.member-modal-photo-wrap .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a3d2e 0%, #3d3830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 184, 138, 0.4);
  font-size: 0.85em;
  letter-spacing: 0.25em;
  font-weight: 600;
}
/* ===== 콘텐츠 영역 ===== */
.member-modal-content {
  flex: 1;
  min-width: 0;
  padding: 50px 45px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: thin;
  scrollbar-color: #b89968 transparent;
}
.member-modal-content::-webkit-scrollbar {
  width: 4px;
}
.member-modal-content::-webkit-scrollbar-thumb {
  background: #b89968;
  border-radius: 2px;
}
.member-modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.member-modal-content .position {
  font-size: 0.7em;
  color: #b89968;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.member-modal-content .name {
  font-size: 1.8em;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 2px solid #3d3830;
}
.member-modal-content h5 {
  font-size: 1em;
  font-weight: 700;
  color: #3d3830;
  margin-bottom: 16px;
  padding-left: 14px;
  position: relative;
}
.member-modal-content h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 3px;
  width: 3px;
  background: #b89968;
}
.member-modal-content ul.career {
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-modal-content ul.career li {
  position: relative;
  padding: 0px 0 0px 16px;
  color: #555;
  font-size: 0.85em;
  line-height: 1.6;
  word-break: keep-all;
}
.member-modal-content ul.career li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: #b89968;
  border-radius: 50%;
}
/* 닫기 버튼 */
.member-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #eee;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  color: #555;
  font-size: 16px;
  transition: all 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.member-modal-close:hover {
  color: #3d3830;
  background: #fff;
  transform: rotate(90deg);
}
/* 모달 열렸을 때 body 스크롤 잠금 */
body.modal-open {
  overflow: hidden;
}
/* ===== 정책 페이지 (이용약관 / 개인정보처리방침) ===== */
/* 사이드바 없이 본문 중심 레이아웃 */
.policy-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}
/* 페이지 헤더 - 가운데 정렬 */
.policy-header {
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 50px;
  border-bottom: 2px solid #3d3830;
  position: relative;
}
.policy-header h1 {
  font-size: 2.2em;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.policy-header h1 .accent {
  color: #b89968;
}
.policy-header .effective-date {
  display: inline-block;
  background: #faf7f1;
  color: #b89968;
  font-size: 0.78em;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
/* 정책 페이지 간 이동 탭 */
.policy-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.policy-nav-tabs a {
  padding: 14px 32px;
  font-size: 0.95em;
  color: #888;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  font-weight: 500;
}
.policy-nav-tabs a:hover {
  color: #3d3830;
}
.policy-nav-tabs a.active {
  color: #3d3830;
  font-weight: 700;
  border-bottom-color: #b89968;
}
/* 정책 본문 */
.policy-content {
  color: #444;
  line-height: 1.85;
  font-size: 0.92em;
}
.policy-content > .intro {
  background: #faf7f1;
  border-left: 4px solid #b89968;
  padding: 22px 26px;
  margin-bottom: 40px;
  border-radius: 0 6px 6px 0;
  color: #555;
  font-size: 0.95em;
  line-height: 1.75;
}
/* 조항 (제 1조, 제 2조 등) */
.policy-article {
  margin-bottom: 36px;
}
.policy-article:last-child {
  margin-bottom: 0;
}
.policy-article h3 {
  font-size: 1.15em;
  font-weight: 700;
  color: #3d3830;
  margin-bottom: 16px;
  padding-left: 18px;
  position: relative;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.policy-article h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 4px;
  width: 4px;
  background: #b89968;
}
.policy-article h3 .article-num {
  color: #b89968;
  font-weight: 700;
  margin-right: 8px;
}
.policy-article p {
  color: #555;
  font-size: 0.92em;
  line-height: 1.85;
  margin-bottom: 12px;
  padding-left: 18px;
}
.policy-article p:last-child {
  margin-bottom: 0;
}
/* 번호 매김 리스트 (1. 2. 3.) */
.policy-article ol {
  list-style: none;
  padding-left: 18px;
  margin-bottom: 12px;
  counter-reset: item;
}
.policy-article ol > li {
  color: #555;
  font-size: 0.92em;
  line-height: 1.85;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  counter-increment: item;
}
.policy-article ol > li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #b89968;
  font-weight: 700;
}
/* 불릿 리스트 (조항 내 세부 항목) */
.policy-article ul {
  list-style: none;
  padding-left: 18px;
  margin: 10px 0 14px;
}
.policy-article ol ul {
  padding-left: 6px;
  margin-top: 8px;
}
.policy-article ul > li {
  color: #666;
  font-size: 0.9em;
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.policy-article ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background: #b89968;
  border-radius: 50%;
}
/* 강조 라인 */
.policy-article strong {
  color: #3d3830;
  font-weight: 700;
}
/* 보호책임자 정보 박스 */
.policy-info-box {
  background: #faf7f1;
  border-radius: 6px;
  padding: 22px 26px;
  margin: 14px 0 0 18px;
}
.policy-info-box .info-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 8px 0;
  font-size: 0.92em;
}
.policy-info-box .info-row:not(:last-child) {
  border-bottom: 1px solid rgba(184, 153, 104, 0.15);
}
.policy-info-box .info-row .label {
  flex: 0 0 140px;
  color: #b89968;
  font-weight: 700;
  font-size: 0.85em;
  letter-spacing: 0.05em;
}
.policy-info-box .info-row .value {
  flex: 1;
  color: #3d3830;
  font-weight: 600;
}
/* 시행일자 (페이지 하단) */
.policy-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: right;
  color: #999;
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 0.02em;
}
/* ===== 개인정보 동의 모달 (상담신청 자세히 보기) ===== */
.privacy-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 25, 0.75);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.privacy-modal.active {
  opacity: 1;
  visibility: visible;
}
.privacy-modal-inner {
  background: #fff;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.privacy-modal.active .privacy-modal-inner {
  transform: translateY(0);
}
/* 모달 헤더 */
.privacy-modal-header {
  background: #3d3830;
  color: #fff;
  padding: 24px 30px;
  position: relative;
  flex: 0 0 auto;
}
.privacy-modal-header .label {
  color: #d4b88a;
  font-size: 0.65em;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.privacy-modal-header h3 {
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
/* 닫기 버튼 */
.privacy-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  padding: 0;
}
.privacy-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}
/* 모달 본문 */
.privacy-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 30px 30px 10px;
  scrollbar-width: thin;
  scrollbar-color: #b89968 transparent;
}
.privacy-modal-body::-webkit-scrollbar {
  width: 4px;
}
.privacy-modal-body::-webkit-scrollbar-thumb {
  background: #b89968;
  border-radius: 2px;
}
.privacy-modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.privacy-modal-body .intro-text {
  color: #555;
  font-size: 0.9em;
  line-height: 1.75;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.privacy-modal-body .privacy-item {
  margin-bottom: 22px;
}
.privacy-modal-body .privacy-item:last-child {
  margin-bottom: 0;
}
.privacy-modal-body .privacy-item h4 {
  font-size: 0.88em;
  font-weight: 700;
  color: #3d3830;
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
  letter-spacing: -0.01em;
}
.privacy-modal-body .privacy-item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 2px;
  width: 3px;
  background: #b89968;
}
.privacy-modal-body .privacy-item p {
  color: #555;
  font-size: 0.85em;
  line-height: 1.75;
  margin: 0 0 8px 14px;
}
.privacy-modal-body .privacy-item p:last-child {
  margin-bottom: 0;
}
.privacy-modal-body .privacy-item strong {
  color: #3d3830;
  font-weight: 700;
}
.privacy-modal-body .privacy-item .highlight {
  color: #b89968;
  font-weight: 600;
}
/* 모달 푸터 (전체 보기 링크) */
.privacy-modal-footer {
  flex: 0 0 auto;
  padding: 18px 30px;
  border-top: 1px solid #eee;
  background: #faf7f1;
  text-align: center;
  font-size: 0.82em;
  color: #777;
}
.privacy-modal-footer a {
  color: #b89968;
  font-weight: 700;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s;
}
.privacy-modal-footer a:hover {
  color: #3d3830;
  text-decoration: underline;
}
/* ===== 자문 안내 CTA 박스 ===== */
.consult-cta {
  background: linear-gradient(135deg, #3d3830 0%, #4a3d2e 100%);
  color: #fff;
  border-radius: 8px;
  padding: 45px 50px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
.consult-cta::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(212, 184, 138, 0.08);
  border-radius: 50%;
}
.consult-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 80px;
  width: 160px;
  height: 160px;
  background: rgba(212, 184, 138, 0.05);
  border-radius: 50%;
}
.consult-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.consult-cta-text {
  flex: 1;
  min-width: 0;
}
.consult-cta-text .label {
  color: #d4b88a;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.consult-cta-text h4 {
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.consult-cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9em;
  line-height: 1.7;
  margin-bottom: 8px;
}
.consult-cta-text .note {
  color: rgba(212, 184, 138, 0.85);
  font-size: 0.78em;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.6;
}
.consult-cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #b89968;
  color: #fff;
  font-size: 0.95em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: all 0.3s;
  white-space: nowrap;
}
.consult-cta-btn:hover {
  background: #d4b88a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184, 153, 104, 0.35);
}
.consult-cta-btn .arrow {
  transition: transform 0.3s;
}
.consult-cta-btn:hover .arrow {
  transform: translateX(4px);
}
/* ===== 큰 섹션 헤더 (정부지원금 페이지의 1, 2, 3 같은 구분) ===== */
.big-section {
  margin-bottom: 60px;
}
.big-section:last-child {
  margin-bottom: 0;
}
.big-section-header {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 22px;
  /* padding-bottom: 22px;
    border-bottom: 2px solid #3d3830; */
}
.big-section-header .num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #3d3830;
  color: #d4b88a;
  border-radius: 50%;
  font-size: 1.1em;
  font-weight: 700;
  /* font-family: 'Georgia', serif; */
}
.big-section-header .header-text {
  flex: 1;
  min-width: 0;
}
.big-section-header h3 {
  font-size: 1.4em;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.big-section-header h3 .accent {
  color: #b89968;
}
.big-section-header .sub-desc {
  font-size: 0.88em;
  color: #777;
  line-height: 1.6;
}
/* ===== 안내 노트 박스 (인용구 + 본문) ===== */
.intro-quote {
  background: #faf7f1;
  border-left: 4px solid #b89968;
  padding: 28px 32px;
  border-radius: 0 6px 6px 0;
  margin: 0 0 35px;
}
.intro-quote .quote {
  font-size: 1.15em;
  font-weight: 700;
  color: #3d3830;
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.intro-quote .quote::before {
  content: '"';
  color: #b89968;
  font-size: 1.4em;
  font-weight: 700;
  margin-right: 4px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.intro-quote .quote::after {
  content: '"';
  color: #b89968;
  font-size: 1.4em;
  font-weight: 700;
  margin-left: 4px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.intro-quote p {
  color: #555;
  font-size: 0.9em;
  line-height: 1.75;
  margin-bottom: 8px;
}
.intro-quote p:last-child {
  margin-bottom: 0;
}
.intro-quote .note {
  color: #999;
  font-size: 0.8em;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(184, 153, 104, 0.2);
  line-height: 1.6;
}
/* ===== 마무리 메시지 박스 (브랜드 메시지용 - 베이지 톤) ===== */
.closing-message {
  background: linear-gradient(180deg, #fdfbf6 0%, #f7f1e6 100%);
  border: 1px solid #ebe0c8;
  color: #3d3830;
  border-radius: 8px;
  padding: 60px 55px 55px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* 좌상단 큰 골드 따옴표 (배경 장식) */
.closing-message::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 8em;
  font-family: Georgia, serif;
  color: rgba(184, 153, 104, 0.18);
  line-height: 1;
  font-weight: 700;
  z-index: 1;
}
/* 우하단 큰 골드 따옴표 (배경 장식) */
.closing-message::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: 40px;
  font-size: 8em;
  font-family: Georgia, serif;
  color: rgba(184, 153, 138, 0.18);
  line-height: 1;
  font-weight: 700;
  z-index: 1;
}
.closing-message-inner {
  position: relative;
  z-index: 2;
}
/* 상단 골드 라벨 + 데코 라인 */
.closing-message .label {
  display: inline-block;
  color: #b89968;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding: 0 28px;
}
.closing-message .label::before,
.closing-message .label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #b89968;
}
.closing-message .label::before {
  left: 0;
}
.closing-message .label::after {
  right: 0;
}
/* 메인 메시지 - 어두운 색상 (베이지 배경 대비) */
.closing-message .quote {
  font-size: 1.55em;
  font-weight: 700;
  color: #3d3830;
  line-height: 1.55;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.closing-message .quote .accent {
  color: #b89968;
}
/* 중앙 골드 구분선 */
.closing-message-inner > p:first-of-type {
  position: relative;
  padding-top: 24px;
  margin-top: 0;
}
.closing-message-inner > p:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #b89968;
}
.closing-message p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.85;
  margin-bottom: 10px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.closing-message p:last-child {
  margin-bottom: 0;
}
/* ===== 섹션 마무리 인용구 (작은 강조 박스) ===== */
.section-quote {
  background: #faf7f1;
  border-left: 3px solid #b89968;
  padding: 24px 28px;
  margin: 25px 0 0;
  border-radius: 0 4px 4px 0;
}
.section-quote .quote {
  font-size: 1.05em;
  font-weight: 700;
  color: #3d3830;
  line-height: 1.55;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.section-quote .quote::before {
  content: '"';
  color: #b89968;
  font-size: 1.3em;
  font-weight: 700;
  margin-right: 4px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.section-quote .quote::after {
  content: '"';
  color: #b89968;
  font-size: 1.3em;
  font-weight: 700;
  margin-left: 4px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.section-quote p {
  color: #555;
  font-size: 0.88em;
  line-height: 1.7;
  margin: 0;
}
/* ===== 경고/주의 박스 ===== */
.warning-quote {
  background: #fff8f0;
  border: 1px solid #f0c98e;
  border-left: 4px solid #d4943a;
  padding: 22px 26px;
  border-radius: 0 6px 6px 0;
  margin-top: 18px;
}
.warning-quote .warn-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95em;
  font-weight: 700;
  color: #b3741c;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.warning-quote .warn-title .icon {
  font-size: 1.1em;
}
.warning-quote p {
  color: #6d5028;
  font-size: 0.85em;
  line-height: 1.7;
  margin: 0;
}
/* ===== 자문 서비스 테이블 (강화 디자인) ===== */
.service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-top: 2px solid #3d3830;
}
.service-table thead th {
  background: #faf7f1;
  color: #3d3830;
  font-weight: 700;
  font-size: 0.9em;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e5dfd2;
  letter-spacing: -0.01em;
}
.service-table tbody td {
  padding: 22px 20px;
  border-bottom: 1px solid #eee;
  font-size: 0.88em;
  color: #555;
  line-height: 1.7;
  vertical-align: top;
  word-break: keep-all;
}
.service-table tbody td:first-child {
  font-weight: 700;
  color: #3d3830;
  width: 160px;
  font-size: 0.95em;
  position: relative;
  padding-left: 32px;
}
.service-table tbody td:first-child::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 30px;
  width: 4px;
  height: 4px;
  background: #b89968;
  border-radius: 50%;
}
.service-table tbody td:last-child {
  color: #777;
  width: 32%;
}
.service-table tbody tr:hover {
  background: #fafaf8;
}
.service-table tbody tr:hover td:first-child {
  color: #b89968;
}
/* ===== 오시는길 (Location) ===== */
.branch-section {
  margin-bottom: 50px;
}
.branch-section:last-child {
  margin-bottom: 0;
}
.branch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid #3d3830;
  flex-wrap: wrap;
  gap: 12px;
}
.branch-header .branch-label {
  display: flex;
  align-items: center;
  gap: 14px;
}
.branch-header .branch-label .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #3d3830;
  color: #d4b88a;
  border-radius: 50%;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.branch-header .branch-label h4 {
  font-size: 1.35em;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.02em;
}
.branch-header .branch-label h4 .accent {
  color: #b89968;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-left: 10px;
  text-transform: uppercase;
}
/* 지도 영역 */
.branch-map {
  width: 100%;
  height: 340px;
  background: #f5f3ef;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
  border: 1px solid #eee;
}
/* 카카오맵 컨테이너가 부모에 꽉 차도록 강제 */
.branch-map > .root_daum_roughmap,
.branch-map > .root_daum_roughmap_landing {
  width: 100% !important;
  height: 100% !important;
}
.branch-map .wrap_map,
.branch-map .wrap_controllers {
  width: 100% !important;
}
.branch-map .wrap_map {
  height: 100% !important;
}
.branch-map iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
/* 주소 정보 */
.branch-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #faf7f1;
  border-radius: 6px;
  padding: 28px 30px;
}
.branch-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid rgba(184, 153, 104, 0.2);
}
.branch-info-item:first-child {
  padding-left: 0;
}
.branch-info-item:last-child {
  border-right: none;
  padding-right: 0;
}
.branch-info-item .icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: #3d3830;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4b88a;
  font-size: 14px;
  font-weight: 700;
}
.branch-info-item .info-content {
  flex: 1;
  min-width: 0;
}
.branch-info-item .info-content .label {
  font-size: 0.7em;
  color: #b89968;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.branch-info-item .info-content .value {
  font-size: 0.88em;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
}
/* ===== 정보 테이블 (구성원 등) ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.info-table th,
.info-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 0.85em;
}
.info-table th {
  background: #faf7f1;
  color: #3d3830;
  font-weight: 700;
  width: 160px;
}
.info-table td {
  color: #555;
}
.info-table tr:first-child th,
.info-table tr:first-child td {
  border-top: 2px solid #3d3830;
}
/* ===== 상담신청 폼 ===== */
.consult-form {
  background: #fff;
  border: 1px solid #eee;
  padding: 50px 50px;
  border-radius: 8px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.85em;
  font-weight: 700;
  color: #3d3830;
  margin-bottom: 10px;
}
.form-group label .required,
.form-agree .required {
  color: #c0392b;
  margin-left: 4px;
  background-image: none !important;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  height: 50px;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1em;
  color: #333;
  background: #fafafa;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b89968;
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-agree {
  background: #faf7f1;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85em;
  color: #555;
}
.form-agree a {
  color: #b89968;
  text-decoration: underline;
  margin-left: auto;
}
.form-submit {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.form-submit button {
  padding: 16px 50px;
  font-size: 0.9em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  font-family: inherit;
}
.form-submit .btn-primary {
  background: #3d3830;
  color: #fff;
}
.form-submit .btn-primary:hover {
  background: #4a3d2e;
}
.form-submit .btn-secondary {
  background: #fff;
  color: #555;
  border: 1px solid #ddd;
}
.form-submit .btn-secondary:hover {
  border-color: #999;
  color: #222;
}
