@charset "utf-8";

/* ===========================
   Contact Page
=========================== */

.contact-wrap {
	min-height: 100vh;
}

/* Visual 헤더 */
.contact-visual {
	width: 100%;
	aspect-ratio: 1920 / 600;
	background-image: url("/hongt/file/IMAGE/uu/10a7508a3a29461fb42df640c6f86e1a");
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.contact-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(44, 36, 36, 0.55);
}

.contact-visual-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 1;
}

.contact-visual-text h2 {
	font-size: 60px;
	line-height: 1;
	padding-bottom: 16px;
	letter-spacing: 0.05em;
}

.contact-visual-text p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	letter-spacing: 0.1em;
}

/* 폼 영역 */
.contact-inner {
	max-width: 860px;
	width: calc(100% - 80px);
	margin: 0 auto;
	padding: 100px 0 140px;
}

.contact-header {
	text-align: center;
	padding-bottom: 64px;
}

.contact-header span {
	display: block;
	font-size: 13px;
	letter-spacing: 0.2em;
	color: var(--l-brown);
	padding-bottom: 16px;
}

.contact-header h3 {
	font-size: 36px;
	font-weight: 700;
	color: #FFE7E7;
	padding-bottom: 20px;
	line-height: 1.2;
}

.contact-header p {
	color: var(--l-brown);
	font-size: 15px;
	line-height: 1.8;
}

/* 폼 그리드 */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-row {
	display: flex;
	gap: 20px;
}

.form-row.half {
	flex-direction: row;
}

.form-row.half .form-group {
	flex: 1;
}

.form-row.full {
	flex-direction: column;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-group label {
	font-size: 13px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
}

.form-group label .req {
	color: var(--l-brown);
	margin-left: 2px;
}

/* 입력 필드 */
.form-input,
.form-textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(158, 128, 128, 0.3);
	border-radius: 4px;
	color: #fff;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.2s ease, background 0.2s ease;
	box-sizing: border-box;
}

.form-input {
	height: 52px;
	padding: 0 18px;
}

.form-textarea {
	padding: 16px 18px;
	resize: vertical;
	min-height: 180px;
	line-height: 1.7;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: rgba(158, 128, 128, 0.5);
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: rgba(158, 128, 128, 0.7);
	background: rgba(255, 255, 255, 0.08);
}

/* 개인정보 동의 */
.privacy-group label:first-child {
	margin-bottom: 0;
}

.privacy-box {
	border: 1px solid rgba(158, 128, 128, 0.25);
	border-radius: 4px;
	padding: 20px 22px;
	background: rgba(255, 255, 255, 0.03);
}

.privacy-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.privacy-content ul li {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
}

.privacy-content ul li strong {
	color: rgba(255, 255, 255, 0.7);
	margin-right: 4px;
}

.privacy-content > p {
	font-size: 12px;
	color: rgba(158, 128, 128, 0.6);
	line-height: 1.6;
	padding-top: 10px;
	border-top: 1px solid rgba(158, 128, 128, 0.15);
}

.privacy-check {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
}

.privacy-check input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: var(--l-brown);
	cursor: pointer;
	flex-shrink: 0;
}

.privacy-check label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	cursor: pointer;
	letter-spacing: 0;
	text-transform: none;
}

/* 캡차 */
.captcha-group {
	align-items: flex-start;
}

/* 제출 버튼 */
.btn-submit {
	width: 100%;
	height: 58px;
	background: transparent;
	border: 1px solid rgba(158, 128, 128, 0.5);
	border-radius: 4px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	letter-spacing: 0.15em;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-submit:hover {
	background: rgba(158, 128, 128, 0.15);
	border-color: rgba(158, 128, 128, 0.8);
	color: #fff;
}

/* ===========================
   반응형
=========================== */
@media (max-width: 768px) {
	.contact-visual {
		aspect-ratio: auto;
		height: 280px;
	}

	.contact-visual-text h2 {
		font-size: 40px;
	}

	.contact-inner {
		width: calc(100% - 40px);
		padding: 70px 0 100px;
	}

	.contact-header {
		padding-bottom: 48px;
	}

	.contact-header h3 {
		font-size: 26px;
	}

	.form-row.half {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.contact-visual-text h2 {
		font-size: 32px;
	}

	.contact-header h3 {
		font-size: 22px;
	}

	.form-input {
		height: 48px;
		font-size: 14px;
	}

	.form-textarea {
		font-size: 14px;
	}

	.btn-submit {
		height: 52px;
		font-size: 14px;
	}
}
