/* ==========================================================================
   (주)후트웍 — 문의 (contact) 페이지 전용 CSS
   톤: daehan 클론. main.css 토큰/공유 클래스 재사용. about/defense와 동일 패턴.
   좌측정렬 비대칭 2col · 대형 영문 타이틀(60/48) · 막대 eyebrow · radius 0(직각).
   ========================================================================== */

/* 공통 eyebrow (about/defense 톤 — 막대 라인 포함) */
.ct-eyebrow {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 14px; font-weight: 500;
	letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--accent);
}

/* ==========================================================================
   1. 문의 폼 — 좌 헤더(sticky) / 우 폼 (비대칭 2col)
   ========================================================================== */
.ct-form__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	column-gap: 80px; row-gap: 54px; align-items: start;
}
/* 헤더는 상단 풀폭 — 그 아래 좌 설명 / 우 폼이 상단 정렬 */
.ct-form__head { grid-column: 1 / -1; }
.ct-form__title {
	font-family: var(--font-display);
	font-size: 60px; font-weight: 600;
	line-height: 1.04; letter-spacing: -0.01em;
	margin: 18px 0 0; color: var(--ink);
}
.ct-form__ko {
	margin: 14px 0 0; padding-left: 20px; position: relative;
	font-size: 21px; font-weight: 600;
	letter-spacing: -0.02em; color: var(--accent);
}
.ct-form__ko::before {
	content: ''; position: absolute; left: 0; top: 5px; bottom: 5px;
	width: 3px; background: var(--accent);
}
.ct-form__lead {
	margin: 0; max-width: 460px;
	font-size: 17px; font-weight: 300; line-height: 1.85;
	color: var(--ink-soft); word-break: keep-all;
}
/* 좌측 연락처 요약 */
.ct-form__quick {
	margin: 40px 0 0; padding-top: 30px;
	border-top: 1px solid var(--line);
	display: grid; gap: 20px;
}
.ct-form__quick dt {
	font-family: var(--font-display);
	font-size: 12.5px; font-weight: 600;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--accent); margin-bottom: 6px;
}
.ct-form__quick dd {
	margin: 0; font-size: 18px; font-weight: 600;
	letter-spacing: -0.01em; color: var(--ink);
}

/* 폼 본문 */
.ct-row {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 24px; margin-bottom: 24px;
}
.ct-field { display: flex; flex-direction: column; margin-bottom: 24px; }
.ct-row .ct-field { margin-bottom: 0; }
.ct-field label {
	font-size: 14px; font-weight: 500;
	letter-spacing: -0.01em; color: var(--ink);
	margin-bottom: 10px;
}
.ct-req { color: var(--accent); }
.ct-field input,
.ct-field select,
.ct-field textarea {
	font-family: var(--font-body);
	font-size: 15px; color: var(--ink);
	padding: 14px 16px;
	border: 1px solid #d4dde4; background: #fff;
	transition: border-color .25s ease;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #aab2bb; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus { outline: none; border-color: var(--accent); }
.ct-field textarea { resize: vertical; line-height: 1.6; }
/* select 커스텀 화살표 */
.ct-field select {
	appearance: none; -webkit-appearance: none;
	padding-right: 42px; cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a5a5a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 13px;
}

/* 개인정보 동의 */
.ct-agree {
	display: flex; align-items: flex-start; gap: 10px;
	margin: 6px 0 32px;
	font-size: 14px; color: var(--ink-soft); cursor: pointer;
}
.ct-agree input {
	width: 18px; height: 18px; margin-top: 1px;
	accent-color: var(--accent); flex-shrink: 0; cursor: pointer;
}
.ct-agree a { color: var(--accent); text-decoration: underline; }

/* 제출 버튼 */
.ct-submit {
	display: inline-flex; align-items: center; gap: 12px;
	height: 58px; padding: 0 36px;
	background: var(--accent); color: #fff; border: 0; cursor: pointer;
	font-family: var(--font-display); font-size: 16px; font-weight: 500;
	transition: background .35s ease;
}
.ct-submit:hover { background: var(--navy); }
.ct-submit svg { width: 18px; height: 18px; }

/* ==========================================================================
   2. 오시는 길 — 헤더 + 지도 placeholder / 정보
   ========================================================================== */
.ct-map__head { margin-bottom: 56px; }
.ct-map__title {
	font-family: var(--font-display);
	font-size: 48px; font-weight: 600;
	line-height: 1.1; letter-spacing: -0.01em;
	margin: 18px 0 0; color: var(--ink);
}
.ct-map__ko {
	margin: 14px 0 0; font-size: 21px; font-weight: 600;
	letter-spacing: -0.02em; color: var(--ink-soft);
}
.ct-map__grid {
	display: grid; grid-template-columns: 1.4fr 1fr;
	gap: 50px; align-items: stretch;
}
/* 지도 placeholder */
.ct-map__frame {
	min-height: 440px;
	background: linear-gradient(160deg, #e7eef3, #d4dde4);
	display: flex; align-items: center; justify-content: center;
}
.ct-map__frame-label {
	font-family: var(--font-body);
	font-size: 14px; letter-spacing: 0.04em; color: #8a97a2;
}
/* 정보 리스트 */
.ct-map__info { align-content: start; }
.ct-map__item {
	padding: 26px 0; border-bottom: 1px solid #dbe3ea;
}
.ct-map__item:first-child { padding-top: 0; }
.ct-map__item dt {
	font-family: var(--font-display);
	font-size: 12.5px; font-weight: 600;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--accent); margin-bottom: 10px;
}
.ct-map__item dd {
	margin: 0; font-size: 17px; font-weight: 400;
	line-height: 1.6; letter-spacing: -0.01em; color: var(--ink);
}

/* ==========================================================================
   반응형 — 1200 / 768
   ========================================================================== */
@media (max-width: 1200px) {
	.ct-form__grid { grid-template-columns: 1fr; gap: 50px; }
	.ct-form__head { position: static; }
	.ct-form__title, .ct-map__title { font-size: 44px; }
	.ct-map__grid { grid-template-columns: 1fr; gap: 36px; }
	.ct-map__frame { min-height: 360px; }
}
@media (max-width: 768px) {
	.ct-form__title { font-size: 38px; }
	.ct-form__ko, .ct-map__ko { font-size: 18px; }
	.ct-form__lead { font-size: 16px; }
	.ct-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
	.ct-row .ct-field { margin-bottom: 22px; }
	.ct-field { margin-bottom: 22px; }
	.ct-map__title { font-size: 32px; }
	.ct-map__frame { min-height: 260px; }
	.ct-map__head { margin-bottom: 40px; }
}
