@charset "UTF-8";

/* 웹폰트(Montserrat / Pretendard)는 hfe-header.php에서 <link>로 로드 */

/* ==================== */
/* CSS Variables        */
/* ==================== */
:root {
	/* ===== Brand Colors (아이백의원 - Figma 토큰) ===== */
	/* Brown */
	--brown-01: #aa9371;      /* button/text/stroke/icon brown_01 */
	--brown-02: #443a35;      /* bg/text/icon brown_02 */
	--brown-02-80: rgba(68, 58, 53, 0.8);

	/* Beige / Ivory */
	--beige-01: #fffaf5;      /* bg/text/icon/stroke beige_01 (가장 밝은 베이지) */
	--beige-02: #e3dbcc;      /* bg/text/icon/stroke beige_02 */
	--beige-02-60: rgba(227, 219, 204, 0.6);
	--ivory-01: #f3f0e9;      /* bg/icon/stroke ivory_01 */
	--beige-light: #fad58f;   /* text_beige_light_01 (포인트) */

	/* Black / Gray */
	--black-01: #111111;      /* text/bg black_01 */
	--black-02: #252525;      /* text black_02 */
	--black-03: #515151;      /* text black_03 */
	--black-02-80: rgba(17, 17, 17, 0.8);
	--gray-01: #7c7c7c;       /* text gray_01 */

	--white: #ffffff;

	/* Semantic 매핑 (공통 컴포넌트 호환) */
	--primary: #aa9371;
	--primary-dark: #443a35;
	--secondary: #443a35;
	--black: #111111;

	/* Text Colors */
	--text-primary: #111111;
	--text-secondary: #252525;
	--text-tertiary: #515151;
	--text-gray: #7c7c7c;
	--text-white: #ffffff;
	--text-white-secondary: rgba(255, 255, 255, 0.70);

	/* Spacing */
	--header-height: 100px;

	/* Border Radius */
	--radius-sm: 10px;
	--radius-md: 15px;
	--radius-lg: 20px;
	--radius-xl: 30px;
	--radius-2xl: 200px;

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
}

/* ==================== */
/* Reset & Base         */
/* ==================== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Pretendard', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-primary);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none !important;
	color: inherit;
}

ul, ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	border: none;
	outline: none;
}

/* ==================== */
/* Layout               */
/* ==================== */
.wrap {
	width: 100%;
	min-height: 100vh;
	overflow-x: hidden;
}

.inner-wrap {
	width: 100%;
	max-width: 1400px;   /* 1920 기준 좌우 260px 여백 */
	margin: 0 auto;
}

/* Section Common */
section {
	position: relative;
}

.section-title {
	font-size: 48px;
	font-weight: 900;
	color: var(--text-primary);
	text-transform: uppercase;
}

.section-title.white {
	color: var(--white);
}

.section-desc {
	font-size: 18px;
	font-weight: 400;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ==================== */
/* Utility Classes      */
/* ==================== */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/* ==================== */
/* Responsive           */
/* ==================== */
@media (max-width: 1480px) {
	.inner-wrap {
		max-width: 100%;
		padding: 0 40px;
	}

	.section-title {
		font-size: 40px;
	}
}

@media (max-width: 1024px) {
	:root {
		--header-height: 70px;
	}

	.inner-wrap {
		max-width: 100%;
		padding: 0 24px;
	}

	.section-title {
		font-size: 36px;
	}

	.section-desc {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	:root {
		--header-height: 60px;
	}

	.inner-wrap {
		max-width: 100%;
		padding: 0 20px;
	}

	.section-title {
		font-size: 28px;
	}

	.section-desc {
		font-size: 15px;
	}
}
