@charset "utf-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css');
/* =========================================
   [0. 디자인 시스템 & 공통 초기화]
   ========================================= */
:root {
	--primary: #a38f5f;
	--primary-light: #f7f4ec;
	--primary-red: #e74c3c;
	--primary-navy: #0a1f4b;
	--color-white: #ffffff;
	--bg-light: #f7f4ec;
	--border-radius-card: 16px;
	--border-radius-btn: 4px;
	--color-gray-100: #f6f6f6;
	--color-gray-200: #f1f1f1;
	--color-gray-300: #ddd;
	--color-gray-400: #bbb;
	--color-gray-500: #999;
	--color-gray-600: #777;
	--color-gray-700: #666;
	--color-gray-800: #444;
	--color-gray-900: #222;
}

/* [핵심] 자바스크립트 제어를 위해 CSS 스크롤 동작 제거 */
html {
	/* scroll-behavior: smooth; -> JS로 정밀 제어 */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'pretendard'; color: var(--color-gray-900); line-height: 1.6; background-color: var(--color-white); }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: 'pretendard'; }

.container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 20px; position: relative; }
section { overflow: hidden; }

/* [애니메이션 정의] */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; color: var(--color-gray-900); letter-spacing: -0.5px; }
.section-header span { display: block; font-size: 14px; color: var(--color-gray-500); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; font-weight: 500; }
.section-header hr { width: 40px; height: 3px; background: var(--primary); border: none; margin: 0 auto; opacity: 0.5; }

/* [2] 브랜드 바 (메뉴 포함) */
.brand-section { background: var(--color-white); border-bottom: 1px solid var(--color-gray-300); padding: 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); height: 80px; display: flex; align-items: center; }
.brand-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%; position: relative; }
.brand-logo { font-size: 18px; font-weight: 800; color: var(--color-gray-900); margin: 0; white-space: nowrap; display: flex; align-items: center; }
.brand-logo img { max-width: 100%; height: 40px; display: block; }
.brand-menu { display: flex; gap: 40px; margin: 0; padding: 0; }
.brand-menu li a { font-size: 18px; font-weight: 600; color: var(--color-gray-800); position: relative; padding: 26px 0; transition: 0.3s; display: block; border-bottom: 3px solid transparent; }
.brand-menu li a:hover, .brand-menu li.active a { color: var(--primary); border-bottom-color: var(--primary); }
.mobile-menu-btn { display: none; font-size: 24px; color: var(--color-gray-900); background: none; border: none; cursor: pointer; padding: 10px; }

/* [3] 메인 히어로 */
.hero-section { background: url('/images/bg.jpg') 50% 50% #2b3a4f;background-size: cover;/*linear-gradient(135deg, #2b3a4f 0%, #1c2533 100%)*/; color: var(--color-white); position: relative; padding-top: 80px; overflow: hidden; min-height: 600px; }
.hero-section::before { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.05; pointer-events: none; }
.hero-content { display: flex; justify-content: space-between; position: relative; z-index: 2; }
.text-area { padding-bottom: 80px; padding-top: 40px; flex: 1; }
.brand-label { font-size: 14px; font-weight: 700; color: #ffffff50; letter-spacing: 2px; display: block; margin-bottom: 20px; opacity: 0; animation: fadeInUp 0.8s ease-out 0.2s forwards; }
.main-copy { font-size: 46px; line-height: 1.35; font-weight: 300; margin-bottom: 40px; word-break: keep-all; opacity: 0; animation: fadeInUp 0.8s ease-out 0.4s forwards; }
.main-copy strong { font-weight: 700; }
.check-list { opacity: 0; animation: fadeInUp 0.8s ease-out 0.6s forwards; }
.check-list li { font-size: 20px; margin-bottom: 14px; display: flex; align-items: center; color: #e0e0e0; }
.check-icon { display: inline-flex; justify-content: center; align-items: center; width: 22px; height: 22px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: contain; margin-right: 12px; opacity: 0.8; }
.signature-box { margin-top: 50px; text-align: right; padding-right: 550px; opacity: 0; animation: fadeInUp 0.8s ease-out 0.8s forwards; }
.sig-role { display: block; font-size: 13px; color: var(--color-gray-400); margin-bottom: 5px; }
.sig-name { font-family: 'Nanum Pen Script', cursive; font-size: 44px; font-style: italic; color: var(--color-white); }
.person-img-box { position: absolute; bottom: 0; right: 0; width: 500px; z-index: 1; }
.person-img-box img { width: 100%; display: block; }

/* [4] 특징 */
.feature-section { padding: 100px 0; background-color: var(--bg-light); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { background-color: var(--color-white); border: 1px solid var(--color-gray-300); border-radius: var(--border-radius-card); padding: 40px 30px; text-align: left; position: relative; transition: all 0.4s ease; cursor: pointer; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; }
.feature-content h3 { font-size: 24px; font-weight: 700; margin-bottom: 30px; line-height: 1.4; color: var(--color-gray-900); transition: color 0.4s; word-break: keep-all; }
.feature-content p { font-size: 16px; color: var(--color-gray-700); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.4s; }
.feature-footer { margin-top: 30px; display: flex; justify-content: space-between; align-items: center; height: 40px; }
.feature-date { font-size: 14px; color: var(--color-gray-500); font-weight: 500; transition: opacity 0.3s; }
.feature-date i { margin-right: 6px; }
.feature-btn { width: 40px; height: 40px; background-color: var(--color-gray-900); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--color-white); opacity: 0; transform: translateX(-20px); transition: all 0.4s ease; }
.feature-card:hover { background-color: var(--primary); border-color: var(--primary); transform: translateY(-10px);  }
.feature-card:hover .feature-content h3 { color: var(--color-white); }
.feature-card:hover .feature-content p { color: rgba(255,255,255,0.85); }
.feature-card:hover .feature-date { opacity: 0; display: none; }
.feature-card:hover .feature-btn { opacity: 1; transform: translateX(0); background-color: var(--color-white); color: var(--primary); margin-left: auto; }

/* [5] 소개 */
.about-section { padding: 100px 0; background-color: var(--color-white); }
.about-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; margin-bottom: 60px; }
.about-text { flex: 0 0 45%; }
.feat-badge { display: block; font-family: serif; font-style: italic; font-size: 48px; color: var(--primary); margin-bottom: 20px; line-height: 1; }
.about-text h2 { font-size: 40px; font-weight: 300; color: var(--color-gray-900); line-height: 1.3; margin-bottom: 40px; word-break: keep-all; }
.about-text h2 strong { font-weight: 800; }
.about-text p { font-size: 16px; color: var(--color-gray-700); margin-bottom: 20px; line-height: 1.6; word-break: keep-all; }
.about-img-box { flex: 1; }
.about-img-box img { width: 100%; height: auto; border-radius: var(--border-radius-card); }
.about-bottom-cards { display: flex; gap: 30px; }
.f-card { flex: 1; background-color: var(--color-white); border: 1px solid var(--color-gray-300); border-radius: var(--border-radius-card); padding: 40px 30px; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.f-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.fc-text h4 { font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.fc-text h3 { font-size: 24px; color: var(--color-gray-900); font-weight: 700; margin-bottom: 15px; line-height: 1.4; word-break: keep-all; }
.fc-text p { font-size: 16px; color: var(--color-gray-700); margin-bottom: 0px; line-height: 1.6; word-break: keep-all; }
.fc-link { font-size: 15px; font-weight: 700; color: var(--color-gray-900); display: inline-flex; align-items: center; gap: 10px; }
.fc-link i { width: 24px; height: 24px; background-color: var(--color-gray-900); color: var(--color-white); border-radius: 50%; font-size: 11px; display: flex; justify-content: center; align-items: center; transition: 0.3s; }
.f-card:hover .fc-link i { background-color: var(--primary); }
.fc-icon { width: 60px; opacity: 0.9; }

/* [6] 업무 */
.work-section { padding: 100px 0; background-color: var(--bg-light); }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.work-card { border: 1px solid var(--color-gray-300); border-radius: var(--border-radius-card); overflow: hidden; transition: 0.3s; background: var(--color-white); }
.work-card:hover { transform: translateY(-5px); }
.work-img { width: 100%; height: 180px; overflow: hidden; }
.work-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.work-card:hover .work-img img { transform: scale(1.05); }
.work-body { padding: 30px 20px; }
.work-tag { font-size: 14px; color: var(--primary); margin-bottom: 10px; display: block; font-weight: 600; }
.work-title { font-size: 24px; font-weight: 700; color: var(--color-gray-900); margin-bottom: 15px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: auto; }
.work-desc { list-style: none;padding: 0;margin-bottom: 15px;font-size: 16px; color: var(--color-gray-700); }
.work-desc li { margin-bottom: 5px;line-height: 1.5;letter-spacing: -0.2px;position: relative;padding-left: 10px; word-break: keep-all; }
.work-desc li::before { content: '-';position: absolute;left: 0;top: 0;color: var(--color-gray-500); }
.work-date { font-size: 14px; color: var(--color-gray-500);font-weight: 500; text-align: right; }

/* [7] 프로세스 */
.process-section { padding: 100px 0; background-color: var(--color-white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-card { border: 1px solid var(--color-gray-300); border-radius: var(--border-radius-card); padding: 45px 20px; text-align: center; background: var(--color-white); display: flex; flex-direction: column; align-items: center; position: relative; transition: 0.3s; }
.process-card:hover { border-color: var(--primary); }
.p-icon-box { width: 80px; height: 80px; background-color: var(--primary-light); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--primary); font-size: 32px; margin-bottom: 25px; transition: 0.3s; }
.process-card:hover .p-icon-box { background-color: var(--primary); color: var(--color-white); }
.step-badge { background-color: var(--primary); color: var(--color-white); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; margin-bottom: 15px; display: inline-block; text-transform: uppercase; letter-spacing: 1px; }
.process-card h3 { font-size: 24px; color: var(--color-gray-900); font-weight: 700; margin-bottom: 15px; line-height: 1.4; }
.process-card p { font-size: 16px; color: var(--color-gray-700); line-height: 1.6; word-break: keep-all; }
.process-arrow { position: absolute; right: -28px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; background-color: var(--primary); border-radius: 50%; color: var(--color-white); display: flex; justify-content: center; align-items: center; font-size: 12px; z-index: 10; }
.process-card:last-child .process-arrow { display: none; }

/* [8] 실적 */
.cases-section { padding: 100px 0; background-color: var(--color-white); border-top: 1px dashed var(--color-gray-300); border-bottom: 1px dashed var(--color-gray-300); }
.cases-wrapper { display: flex; gap: 30px; align-items: stretch; overflow: hidden; }
.cases-banner {flex: 0 0 320px;background-image: linear-gradient(rgba(10, 31, 75, 0.8), rgba(10, 31, 75, 0.8)), url('images/cases-img.png');background-size: cover;background-position: center;border-radius: var(--border-radius-card);padding: 50px 35px;display: flex;flex-direction: column;justify-content: center;color: var(--color-white);z-index: 2;position: relative;}
.cases-banner h3 { font-size: 36px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; letter-spacing: -0.5px; word-break: keep-all; }
.cases-banner p { font-size: 16px; opacity: 0.8; line-height: 1.6; margin-bottom: 0px; }
.slider-container {flex: 1;position: relative;display: flex;align-items: center;overflow: hidden;min-width: 0;}
.slider-track {display: flex;width: 100%;scroll-behavior: smooth;scrollbar-width: none;-ms-overflow-style: none;scroll-snap-type: x mandatory;}
.slider-track::-webkit-scrollbar { display: none; }
.slide-page {flex: 0 0 100%;display: grid;grid-template-columns: repeat(3, 1fr);grid-template-rows: repeat(3, 1fr);gap: 20px;padding: 5px;scroll-snap-align: start;}
.case-unit {cursor: pointer;transition: 0.3s;}
.case-unit:hover .doc-item {transform: translateY(-5px);border-color: var(--primary);}
.case-unit:hover .case-title { color: var(--primary); }
.doc-item {background-color: var(--color-white);border-radius: var(--border-radius-card);padding: 30px 20px;display: flex;flex-direction: column;gap: 10px;transition: 0.3s;border: 1px solid var(--color-gray-300);height: 100%;justify-content: center;}
.doc-header-line { display: none; height: 4px; width: 100%; background: var(--color-gray-100); margin-bottom: 4px; border-radius: 2px; }
.doc-text-title { font-size: 18px; font-weight: 500; color: var(--color-gray-900); line-height: 1.4; margin-bottom: 10px; word-break: keep-all; text-align: center; }
.doc-highlight-box.text-box { text-align: center; padding: 8px 5px; background-color: var(--primary-light); border: 1px solid var(--primary); border-radius: var(--border-radius-btn); width: 100%; margin-top: auto; }
.doc-text-sub { font-size: 14px; color: var(--primary); font-weight: 600; }
.case-meta { margin-top: 10px; }
.case-title { font-size: 16px; font-weight: 700; color: var(--color-gray-900); line-height: 1.3; margin-bottom: 4px; word-break: keep-all; transition: 0.3s; }
.case-desc { font-size: 13px; color: var(--color-gray-700); font-weight: 500; }
.slide-btn {position: absolute;top: 50%;transform: translateY(-50%);width: 40px; height: 40px;background-color: var(--color-white);border: 1px solid var(--color-gray-300);border-radius: 50%;color: var(--color-gray-900);font-size: 16px;z-index: 10;display: flex; justify-content: center; align-items: center;transition: 0.3s;}
.slide-btn:hover { background-color: var(--color-gray-900); color: var(--color-white); border-color: var(--color-gray-900); }
.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }
.banner-btn { display: inline-block; width: 100%; padding: 10px 0; background-color: rgba(255,255,255,0.15); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.3); color: var(--color-white); text-align: center; border-radius: var(--border-radius-btn); font-weight: 500; transition: 0.3s; margin-top: 20px; }
.banner-btn:hover { background-color: var(--color-white); color: var(--color-gray-900); }

/* [9] 프로필 */
.profile-section { position: relative; padding-top: 100px; padding-bottom: 100px; background: var(--color-white); overflow: hidden; }
.profile-bg-block { position: absolute; bottom: 0; left: 0; width: 100%; height: 70%; background-color: var(--bg-light); z-index: 1; }
.profile-inner { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; }
.profile-img-area { flex: 0 0 40%; position: relative; bottom: -100px; margin-right: 5%; text-align: center; line-height: 0; }
.profile-img-area img { width: 100%; max-width: 450px; display: inline-block; filter: drop-shadow(10px 10px 30px rgba(0,30,80,0.15)); }
.profile-content-area { flex: 1; padding-bottom: 0px; }
.profile-header { margin-bottom: 80px; }
.pro-title { font-size: 48px; color: var(--color-gray-900); font-weight: 300; margin-bottom: 20px; line-height: 1.2; }
.pro-title strong { font-weight: 900; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pro-tag { background-color: var(--primary); color: var(--color-white); padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 500; }
.pro-history-box { margin-bottom: 40px; }
.history-title { font-size: 24px; font-weight: 700; color: var(--color-gray-900); margin-bottom: 15px; display: block; border-bottom: 2px solid var(--color-gray-900); padding-bottom: 5px; display: inline-block; }
.history-list li { font-size: 16px; color: var(--color-gray-700); margin-bottom: 10px; position: relative; padding-left: 15px; line-height: 1.6; }
.history-list li::before { content: '•'; position: absolute; left: 0; color: var(--primary); font-size: 18px; line-height: 1.5; }
.pro-contact { margin-bottom: 30px; font-size: 18px; color: var(--color-gray-900); font-weight: 700; background: var(--color-white); display: inline-block; padding: 18px 25px; border-radius: var(--border-radius-btn); }
.pro-contact span { margin-right: 25px; display: inline-block; }
.pro-contact strong { color: var(--color-gray-900); margin-right: 5px; }
.pro-btn { display: inline-flex; align-items: center; background-color: var(--color-gray-900); color: var(--color-white); padding: 18px 40px; font-size: 16px; font-weight: 500; line-height: 1; cursor: pointer; border-radius: var(--border-radius-btn); transition: 0.3s; margin-top: 10px; }
.pro-btn:hover { background-color: var(--primary); transform: translateY(-3px); }
.pro-btn i { margin-left: 10px; }

/* [10] 오시는 길 */
.location-section { padding: 100px 0; background-color: var(--color-white); }
.location-wrapper { display: flex; gap: 50px; }
.loc-info-box { flex: 0 0 35%; }
.loc-address { font-size: 24px; font-weight: 700; color: var(--color-gray-900); margin-bottom: 30px; word-break: keep-all; line-height: 1.4; letter-spacing: -0.5px; }
.loc-contact-list { margin-bottom: 30px; border-top: 1px solid var(--color-gray-300); border-bottom: 1px solid var(--color-gray-300); padding: 25px 0; }
.loc-contact-list li { display: flex; align-items: center; margin-bottom: 12px; font-size: 16px; }
.loc-contact-list li:last-child { margin-bottom: 0; }
.loc-contact-list .label { width: 90px; font-weight: 700; color: var(--color-gray-900); }
.loc-contact-list .value { color: var(--color-gray-700); font-family: 'Roboto', sans-serif; letter-spacing: 0.5px; }
.loc-hours { margin-bottom: 30px; }
.loc-hours h4 { font-size: 18px; margin-bottom: 15px; color: var(--color-gray-900); font-weight: 700; }
.loc-hours p { font-size: 15px; color: var(--color-gray-700); margin-bottom: 8px; display: flex; }
.loc-hours .label { width: 90px; color: var(--color-gray-500); }
.loc-hours .highlight { color: var(--primary-red); font-weight: 500; margin-left: 5px; }
.loc-hours .sub-note { font-size: 13px; color: var(--primary-red); margin-top: 10px; font-weight: 500; }
.loc-subway { margin-bottom: 40px; display: flex; align-items: center; font-size: 16px; font-weight: 500; background: var(--color-gray-100); padding: 15px; border-radius: var(--border-radius-btn); }
.loc-subway .label { margin-right: 15px; }
.line-icon { display: inline-flex; justify-content: center; align-items: center; width: 24px; height: 24px; border-radius: 50%; color: var(--color-white); font-size: 12px; font-weight: bold; margin: 0 3px; vertical-align: middle; }
.line-2 { background-color: #009d3e; } .line-3 { background-color: #ef7c1c; }
.location-btn { display: block; width: 100%; background-color: var(--color-gray-900); color: var(--color-white); text-align: center; border: none; padding: 18px 0; font-size: 16px; font-weight: 500; line-height: 1; cursor: pointer; border-radius: var(--border-radius-btn); transition: 0.3s; margin-top: 10px; }
.location-btn:hover { background-color: var(--primary); }
.loc-map-box { flex: 1; height: 550px; background-color: var(--color-gray-300); border-radius: var(--border-radius-card); overflow: hidden; position: relative; }
.loc-map-box iframe { width: 100%; height: 100%; object-fit: cover; }
.loc-map-box .wrap_controllers,
.loc-map-box .cont .section { display: none; }
.loc-map-box .root_daum_roughmap,
.loc-map-box .root_daum_roughmap .wrap_map,
.loc-map-box .root_daum_roughmap .map {
    width: 100%;
    height: 100%;
}

/* [11] 문의하기 */
.inquiry-section { padding: 100px 0; background-color: var(--bg-light); }
.inquiry-wrapper { display: flex; gap: 60px; align-items: flex-start; }
.inquiry-left { flex: 0 0 35%; }
.inq-label- { display: block; font-size: 14px; color: var(--primary); font-weight: 800; margin-bottom: 15px; letter-spacing: 1px; }
.inq-label { font-size: 14px; font-weight: 700; color: var(--color-gray-400); letter-spacing: 2px; display: block; margin-bottom: 20px; }
.inq-title { font-size: 36px; font-weight: 700; color: var(--color-gray-900); margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.5px;}
.inq-desc { display: block;font-size: 14px;color: var(--color-gray-500);letter-spacing: 2px;text-transform: uppercase;margin-bottom: 25px;font-weight: 500; }
.inq-btn-group { display: flex; gap: 15px; }
.inq-btn { /*flex: 1;*/ display: flex; justify-content: center; align-items: center; padding: 18px 40px; border-radius: 50px; font-size: 16px; font-weight: 700; line-height: 1; transition: 0.3s; }
.inq-btn i { margin-right: 8px; font-size: 18px; }
.btn-call { background-color: var(--primary); color: var(--color-white); }
.btn-call:hover { opacity: 0.8; }
.btn-kakao { background-color: #fee500; color: #3c1e1e; }
.btn-kakao:hover { opacity: 0.8; }
.btn-blog { background-color: #03c75a; color: #fff; }
.btn-blog:hover { opacity: 0.8; }
.inquiry-right { flex: 1; width: 100%; }
.inquiry-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: flex; gap: 15px; }
.form-input, .form-select, .form-textarea { width: 100%; border: 1px solid var(--color-gray-300); background-color: var(--color-white); padding: 16px 20px; font-size: 15px; color: var(--color-gray-900); border-radius: var(--border-radius-btn); font-family: 'Noto Sans KR', sans-serif; outline: none; transition: 0.3s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); background-color: var(--color-white); }
.form-textarea { height: 150px; resize: none; }
.form-submit-btn { background-color: var(--color-gray-900); color: var(--color-white); border: none; padding: 18px 0; font-size: 16px; font-weight: 500; line-height: 1; cursor: pointer; border-radius: var(--border-radius-btn); transition: 0.3s; margin-top: 10px; }
.form-submit-btn:hover { background-color: var(--primary); }
.form-privacy { display: flex;align-items: center;margin-top: 15px;padding: 0 5px; }
.privacy-checkbox { width: 18px;height: 18px;margin-right: 10px;cursor: pointer;accent-color: var(--primary); }
.form-privacy label { font-size: 14px;color: var(--color-gray-700);cursor: pointer;user-select: none;font-weight: 500; }
.form-privacy label:hover { color: var(--color-gray-900); }
.btn-privacy-view {background: none;border: none;color: var(--color-gray-500);text-decoration: underline;font-size: 13px;margin-left: 8px;cursor: pointer;padding: 0;}
.btn-privacy-view:hover {color: var(--primary);}
.modal-overlay {display: none;position: fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(0, 0, 0, 0.6);z-index: 9999;justify-content: center;align-items: center;}
.modal-overlay.show {display: flex;animation: fadeIn 0.3s;}
.modal-window {background-color: var(--color-white);padding: 30px;width: 90%;max-width: 400px;border-radius: var(--border-radius-card);text-align: left;position: relative;}
.modal-title {font-size: 18px;font-weight: 700;color: var(--color-gray-900);margin-bottom: 20px;padding-bottom: 10px;border-bottom: 2px solid var(--color-gray-300);}
.modal-content-list {list-style: none;margin-bottom: 25px;}.modal-content-list li {font-size: 15px;color: var(--color-gray-800);margin-bottom: 12px;line-height: 1.5;display: flex;flex-direction: column;}
.modal-content-list li .label {font-weight: 700;color: var(--color-gray-900);margin-bottom: 4px;display: inline-block;}
.modal-close-btn {width: 100%;padding: 12px 0;background-color: var(--color-gray-800);color: var(--color-white);border-radius: var(--border-radius-btn);font-size: 15px;font-weight: 500;transition: 0.3s;}
.modal-close-btn:hover {background-color: var(--primary);}

/* [12] 푸터 */
.footer-section { border-top: 0px solid var(--color-gray-300); background-color: var(--color-white); padding-bottom: 60px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--color-gray-300); }
.footer-links { display: flex; gap: 30px; }
.footer-links li { font-size: 14px; color: var(--color-gray-700); cursor: pointer; position: relative; font-weight: 500; }
.footer-links li:hover { color: var(--color-gray-900); }
.footer-links li:not(:last-child)::after { content: ''; position: absolute; right: -15px; top: 5px; width: 1px; height: 10px; background-color: var(--color-gray-300); }
.footer-sns { display: flex; gap: 10px; }
.sns-icon { width: 34px; height: 34px; background-color: var(--color-gray-500); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--color-white); font-size: 15px; transition: 0.3s; cursor: pointer; }
.sns-icon:hover { background-color: var(--primary); }
.footer-main { display: flex; padding-top: 50px; }
.f-brand { flex: 0 0 35%; }
.f-logo-text { font-size: 24px; font-weight: 800; color: var(--color-gray-900); margin-bottom: 15px; letter-spacing: -1px; }
.f-phone-label { font-size: 18px; font-weight: 500; color: var(--color-gray-800); }
.f-phone-number { font-size: 26px; font-weight: 800; color: var(--color-gray-900); margin-left: 8px; letter-spacing: -0.5px; }
.f-info { flex: 1; display: flex; gap: 60px; }
.info-col { flex: 1; }
.info-list li { margin-bottom: 8px; font-size: 14px; color: var(--color-gray-700); display: flex; align-items: flex-start; line-height: 1.6; }
.info-label { width: 100px; display: inline-block; color: var(--color-gray-400); font-weight: 400; }
.info-val { color: var(--color-gray-700); font-weight: 400; }
.footer-copy { margin-top: 50px; font-size: 13px; color: var(--color-gray-400); letter-spacing: 0.5px; }

/* [반응형 처리] */
@media (max-width: 991px) {
	.header-inner { flex-direction: column; text-align: center; gap: 20px; }
	.top-icons { justify-content: center; }

	.brand-section { height: 60px; }
	.brand-inner { flex-direction: row;justify-content: space-between;align-items: center;padding: 0 20px; }
	.brand-logo img { height: 32px; }
	.mobile-menu-btn { display: block; }
	.brand-menu { display: none;position: absolute;top: 54px;left: 0;width: 100%;background-color: var(--color-white);flex-direction: column;gap: 0;box-shadow: 0 10px 20px gba(0,0,0,0.05);border-top: 1px solid var(--color-gray-300);padding: 10px 0; }
	.brand-menu.active { display: flex; animation: slideDown 0.3s ease forwards; }
	.brand-menu li { text-align: center; width: 100%; }
	.brand-menu li a { padding: 15px 0; width: 100%; display: block; line-height: 1.5; border-bottom: 1px solid #f9f9f9; }
	.brand-menu li a:hover, .brand-menu li.active a { border-bottom-color: transparent; background-color: #f8f9fa; }

	.hero-content { flex-direction: column; }
	.hero-section { padding-top: 40px; }
	.main-copy { font-size: 36px; }
	.text-area { text-align: center; padding-right: 0; padding-bottom: 40px; padding-top: 0; }
	.check-list li { font-size: 16px; text-align: left; }
	.signature-box { text-align: center; padding-right: 0; margin-bottom: 380px; }
	.person-img-box { width: 300px; left: 50%; transform: translateX(-50%); }
	.feature-section { padding: 50px 0; }
	.feature-grid { grid-template-columns: 1fr; }
	.feature-card { min-height: auto; }
	.work-section {padding: 50px 0;}
	.work-grid { grid-template-columns: repeat(2, 1fr); }
	.about-section {padding: 50px 0;}
	.about-inner { flex-direction: column; text-align: center; gap: 30px; margin-bottom: 30px; }
	.about-text h2 {font-size: 34px;}
	.about-text p { text-align: left; }
	.about-bottom-cards { flex-direction: column; }
	.process-section { padding: 50px 0; }
	.process-grid { grid-template-columns: 1fr; gap: 50px; }
	.process-arrow { right: 50%; top: auto; bottom: -38px; transform: translateX(50%) rotate(90deg); }

	.cases-section {padding: 50px 0;}
	.cases-wrapper { flex-direction: column; }
	.cases-banner { flex: 0 0 auto; width: 100%; margin-bottom: 0px; }
	.slider-container { width: 100%; }
	.slide-page { grid-template-columns: repeat(2, 1fr);grid-template-rows: repeat(3, 1fr); }

	.profile-section { padding: 0px 0 50px; }
	.profile-inner { flex-direction: column; align-items: center; text-align: center; }
	.profile-header { margin-bottom: 40px; }
	.profile-img-area { width: 300px; margin: 0 0 40px 0; bottom: 0; }
	.profile-bg-block { height: 100%; top: 200px; }
	.tag-row { justify-content: center; }
	.history-title { border-bottom: none; }
	.history-list li { text-align: left; display: block; margin-bottom: 5px; }
	.pro-contact { font-size: 16px; margin-bottom: 0; display: flex; flex-direction: column; gap: 5px; }
	.location-section { padding: 50px 0; }
	.location-wrapper { flex-direction: column; }
	.loc-map-box { height: 350px; }
	.inquiry-section { padding: 50px 0; }
	.inquiry-wrapper { align-items: center; flex-direction: column; gap: 20px; }
	.inquiry-left { text-align: center; }
	.inq-btn-group { justify-content: center; }
	.inquiry-form { padding: 0; }
	.form-row { flex-direction: column; gap: 15px; }
	.footer-top { flex-direction: column; gap: 20px; }
	.footer-links { gap: 15px; font-size: 13px; flex-wrap: wrap; justify-content: center; }
	.footer-main { flex-direction: column; gap: 40px; }
	.f-brand { text-align: center; }
	.f-info { flex-direction: column; gap: 20px; }
	.footer-copy { text-align: center; }

	.brand-inner { height: auto; gap: 0; }
	.brand-logo { margin-right: 0; }
}

@media (max-width: 768px) {
	.cases-doc-grid { grid-template-columns: repeat(2, 1fr); }
	.inq-btn-group { flex-direction: column; }
}

@media (max-width: 576px) {
	.work-grid { grid-template-columns: 1fr; }
	.doc-item {height: auto;}
	.slide-page { grid-template-columns: 1fr;grid-template-rows: repeat(2, auto);overflow-y: auto; }
	.loc-map-box .root_daum_roughmap .map { height: 300px; }
}
