/* ============================================
   브라더스팀 프랜차이즈 랜딩
   프리미엄 · 검정/딥네이비/화이트/실버 · 반응형
   ============================================ */
@font-face {
	font-family: 'BrothersTitle';
	src: url('../font/Paperlogy-7Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'BrothersBody';
	src: url('../font/Paperlogy-4Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-black: #0a0a0a;
	--color-navy: #0d1b2a;
	--color-navy-mid: #1b263b;
	--color-navy-light: #415a77;
	--color-white: #ffffff;
	--color-silver: #e5e5e5;
	--color-silver-dark: #c0c0c0;
	--color-bg-light: #f5f5f7;
	--color-text: #1a1a1a;
	--color-text-light: #6b7280;
	--max-width: 1200px;
	--header-height: 64px;
	--radius: 8px;
	--radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	overflow: hidden;
	height: 100%;
	font-family: 'BrothersBody', sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: var(--color-text);
}
.cl { clear: both; }
p { margin: 0 0 0.75em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; vertical-align: middle; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.main_tit, .sect_t_tit, h1, h2, h3 { font-family: 'BrothersTitle', sans-serif; }

.box1 { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
#contents { height: 100%; position: relative; }
.fullpage-wrapper { height: 100%; }

.section {
	height: 100vh;
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
}
.section.fp-auto-height { height: auto; min-height: auto; padding: 48px 0; }

/* 라이트/다크 섹션 배경 */
.section-light { background: var(--color-white); color: var(--color-text); }
.section-dark { background: var(--color-navy); color: var(--color-white); }
.section-dark .sect_desc_light { color: var(--color-silver); opacity: 0.95; }
.main_tit_light { color: var(--color-silver-dark); }
.sect_t_tit_w { color: var(--color-white); }

/* ============================================
   헤더 (흰색 배경)
   ============================================ */
#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 14px 0;
	background: var(--color-white);
	transition: background 0.3s, box-shadow 0.3s;
}
#header.fix {
	position: fixed;
	background: var(--color-white);
	box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header_wrap { display: flex; align-items: center; justify-content: space-between; }
.header_wrap .logo img { height: 54px; width: auto; display: block; }
.header_wrap .r_txt .top_t1 { margin-right: 8px; color: var(--color-text-light); font-size: 14px; }
.header_wrap .r_txt .top_t2 a { font-weight: bold; color: var(--color-navy); font-size: 16px; }
.phone_hide { display: block; }
.pc_hide { display: none; }

/* ============================================
   퀵 연락 (우측 하단)
   ============================================ */
#quickKakao {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999;
}
#quickKakao .link_wrap { display: flex; flex-direction: row; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
#quickKakao .link_wrap a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 16px;
	background: var(--color-navy);
	color: var(--color-white);
	border-radius: var(--radius);
	font-size: 13px;
	font-weight: 500;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
#quickKakao .link_wrap a:hover { background: var(--color-navy-mid); }
#quickKakao .tt { white-space: nowrap; }

/* ============================================
   1. 메인 비주얼 (Hero) — 중앙 정렬
   ============================================ */
.section-hero { background: var(--color-black); color: var(--color-white); }
.main_slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main_slide .slide_wrap,
.main_slide .item,
.main_slide .bg {
	position: absolute;
	inset: 0;
}
.main_slide .item { pointer-events: none; }
.main_slide .bg {
	background-color: var(--color-navy);
	background-size: cover;
	background-position: center;
	opacity: 0;
	animation: heroSlideFade 10s ease-in-out infinite;
}
.main_slide .item:nth-child(1) .bg { animation-delay: 0s; }
.main_slide .item:nth-child(2) .bg { animation-delay: -2.5s; }
.main_slide .item:nth-child(3) .bg { animation-delay: -5s; }
.main_slide .item:nth-child(4) .bg { animation-delay: -7.5s; }
@keyframes heroSlideFade {
	0% { opacity: 0.85; }
	24% { opacity: 0.85; }
	25% { opacity: 0; }
	100% { opacity: 0; }
}
.main_slide .bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(13,27,42,0.45) 100%);
}
.hero_inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
	width: 100%;
	padding: 0 20px;
}
/* 히어로 텍스트: 배경 이미지 위에서도 선명하게 */
.hero_headline {
	font-size: 34px;
	line-height: 1.35;
	margin: 0 0 20px;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 24px rgba(0,0,0,0.5);
}
.hero_sub {
	font-size: 20px;
	color: #f0f4f8;
	margin-bottom: 28px;
	line-height: 1.6;
	text-shadow: 0 1px 4px rgba(0,0,0,0.85), 0 0 16px rgba(0,0,0,0.4);
}
.hero_lead {
	font-size: 17px;
	color: #e8ecf0;
	margin-bottom: 10px;
	text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hero_lead strong { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.hero_desc {
	font-size: 16px;
	color: #e0e6ec;
	margin-bottom: 32px;
	line-height: 1.7;
	text-shadow: 0 1px 4px rgba(0,0,0,0.85);
}
.hero_points {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 28px;
	margin-bottom: 36px;
	font-size: 16px;
	color: #f0f4f8;
	text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hero_cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.btn_primary {
	display: inline-block;
	padding: 16px 32px;
	background: var(--color-white);
	color: var(--color-navy);
	font-weight: bold;
	font-size: 16px;
	border-radius: var(--radius);
	border: none;
	cursor: pointer;
	transition: opacity 0.2s;
}
.btn_primary:hover { opacity: 0.92; }
.btn_secondary {
	display: inline-block;
	padding: 16px 32px;
	background: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-silver);
	font-weight: 500;
	font-size: 16px;
	border-radius: var(--radius);
	transition: background 0.2s, color 0.2s;
}
.btn_secondary:hover { background: var(--color-white); color: var(--color-navy); }
.btn_block { width: 100%; text-align: center; }
.scrollAni {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	color: #e8ecf0;
	font-size: 13px;
	opacity: 0.95;
	z-index: 2;
	text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.scrollAni:hover { color: #fff; opacity: 1; }

/* 키워드 강조: 등장 애니메이션 + 깜빡임(펄스) + 색상 */
.key-word {
	color: var(--color-navy);
	animation: keyFade 1s ease both, keyWordBlink 2.5s ease-in-out 1s infinite;
}
.section-hero .key-word {
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.15);
	animation: keyFade 1s ease both, keyWordBlink 2.5s ease-in-out 1s infinite;
}
.section-dark .key-word,
.key-word-light {
	color: #fff !important;
	text-shadow: 0 0 24px rgba(255,255,255,0.25), 0 2px 8px rgba(0,0,0,0.3);
	animation: keyFade 1s ease both, keyWordBlink 2.5s ease-in-out 1s infinite;
}
.section-light .key-word {
	color: #0d1b2a;
	text-shadow: none;
	animation: keyFade 1s ease both, keyWordBlinkLight 2.5s ease-in-out 1s infinite;
}
@keyframes keyFade {
	0% { opacity: 0; transform: translateY(12px); }
	100% { opacity: 1; transform: translateY(0); }
}
@keyframes keyWordBlink {
	0%, 100% { opacity: 1; text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.2); }
	50% { opacity: 0.92; text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 28px rgba(255,255,255,0.35); }
}
@keyframes keyWordBlinkLight {
	0%, 100% { opacity: 1; color: #0d1b2a; }
	50% { opacity: 0.88; color: #1b263b; }
}
.sect_t_tit .key-word { display: inline; }
.hero_headline .key-word { animation-delay: 0.1s, 1.1s; }
.hero_headline .key-word:nth-of-type(2) { animation-delay: 0.25s, 1.25s; }
.hero_sub .key-word { animation-delay: 0.35s, 1.35s; }
.hero_lead .key-word { animation-delay: 0.45s, 1.45s; }
.hero_desc .key-word { animation-delay: 0.5s, 1.5s; }
.hero_points li { animation: keyFade 0.8s ease both; }
.hero_points li:nth-child(1) { animation-delay: 0.55s; }
.hero_points li:nth-child(2) { animation-delay: 0.65s; }
.hero_points li:nth-child(3) { animation-delay: 0.75s; }
.hero_points li:nth-child(4) { animation-delay: 0.85s; }
.hero_points .key-word { animation: keyFade 0.8s ease both, keyWordBlink 2.5s ease-in-out 1.2s infinite; }

/* ============================================
   2. 브랜드 소개
   ============================================ */
.main_con { padding: 58px 0; }
.main_tit {
	font-size: 14px;
	letter-spacing: 0.15em;
	color: var(--color-text-light);
	margin-bottom: 14px;
	text-align: center;
}
.sect_t_tit {
	font-size: 32px;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 32px;
	text-align: center;
}
/* 섹션 진입 시 키워드 애니메이션 (히어로 제외) + 깜빡임 유지 */
.section:not(.section-hero) .key-word { opacity: 0; }
.section:not(.section-hero).animate-in .key-word { animation: keyFade 0.9s ease both, keyWordBlink 2.5s ease-in-out 1s infinite; }
.section:not(.section-hero).animate-in.section-light .key-word { animation: keyFade 0.9s ease both, keyWordBlinkLight 2.5s ease-in-out 1s infinite; }
.section:not(.section-hero).animate-in .key-word-light { animation: keyFade 0.9s ease both, keyWordBlink 2.5s ease-in-out 1s infinite; }
.sect1_content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	max-width: 1000px;
	margin: 0 auto;
}
.sect1_text .p1 { font-size: 19px; margin-bottom: 18px; }
.sect1_text .p2,
.sect1_text .p3 { font-size: 16px; color: var(--color-text-light); line-height: 1.85; margin-bottom: 14px; }
.sect1_points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 20px;
	margin-top: 24px;
	font-size: 16px;
	color: var(--color-text);
}
.sect1_points li { position: relative; padding-left: 16px; }
.sect1_points li::before { content: '·'; position: absolute; left: 0; font-weight: bold; color: var(--color-navy); }
.sect1_imgs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.sect1_imgs .img_placeholder {
	aspect-ratio: 4/3;
	background: var(--color-bg-light);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-light);
	font-size: 13px;
}
.img_placeholder { color: var(--color-text-light); font-size: 13px; }

/* ============================================
   3. 브랜드 정체성
   ============================================ */
.sect2_quote {
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 32px;
	color: var(--color-white);
	letter-spacing: -0.02em;
}
.sect2_desc {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 36px;
	font-size: 17px;
	color: var(--color-silver);
	line-height: 1.85;
}
.sect2_three {
	font-weight: bold;
	color: var(--color-white);
	margin: 14px 0 !important;
	font-size: 18px;
}
.sect2_values {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 28px;
	font-size: 16px;
	color: var(--color-silver-dark);
}
.sect2_values li { padding: 12px 22px; background: rgba(255,255,255,0.08); border-radius: var(--radius); }

/* ============================================
   4. 경쟁력 (카드 4개)
   ============================================ */
.comp_cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
}
.comp_cards > li {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
	border: 1px solid var(--color-silver);
}
.comp_cards .num {
	display: block;
	font-size: 26px;
	color: var(--color-navy);
	margin-bottom: 14px;
	font-family: 'BrothersTitle', sans-serif;
}
.comp_cards h3 {
	font-size: 18px;
	margin: 0 0 12px;
	color: var(--color-text);
}
.comp_cards p {
	font-size: 15px;
	color: var(--color-text-light);
	line-height: 1.7;
	margin: 0;
}

/* ============================================
   5. 창업 절차 (6단계)
   ============================================ */
.step_list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	max-width: 1100px;
	margin: 0 auto;
}
.step_list > li {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: var(--radius-lg);
	padding: 28px 18px;
	text-align: center;
}
.step_num {
	display: block;
	font-size: 13px;
	letter-spacing: 0.05em;
	color: var(--color-silver-dark);
	margin-bottom: 14px;
	font-weight: bold;
}
.step_list h3 {
	font-size: 17px;
	margin: 0 0 10px;
	color: var(--color-white);
}
.step_list p {
	font-size: 14px;
	color: var(--color-silver);
	line-height: 1.55;
	margin: 0;
}

/* ============================================
   6. 인테리어
   ============================================ */
.sect_desc {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 36px;
	font-size: 17px;
	color: var(--color-text-light);
	line-height: 1.85;
}
.sect5_gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}
.sect5_gallery .img_placeholder {
	aspect-ratio: 16/10;
	background: var(--color-bg-light);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-light);
	font-size: 13px;
}

/* ============================================
   7. 시공
   ============================================ */
#section6 .sect_desc { margin-bottom: 12px; }

/* ============================================
   8. 가맹 매장
   ============================================ */
.sect7_gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}
.sect7_gallery .img_placeholder {
	aspect-ratio: 16/10;
	background: var(--color-bg-light);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-light);
	font-size: 13px;
}

/* ============================================
   9. 사업 안내 (패키지 4개)
   ============================================ */
#section8 .sect_desc { color: var(--color-silver); margin-bottom: 36px; }
.package_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
}
.package_card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--radius-lg);
	padding: 24px 18px;
}
.package_card {
	padding: 28px 20px;
}
.package_card h3 {
	font-size: 16px;
	margin: 0 0 14px;
	color: var(--color-white);
	line-height: 1.4;
}
.package_sub {
	font-size: 14px;
	color: var(--color-silver-dark);
	margin-bottom: 14px !important;
}
.package_card ul { margin: 0; }
.package_card li {
	font-size: 14px;
	color: var(--color-silver);
	padding: 6px 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.package_card li:last-child { border-bottom: none; }

/* ============================================
   10. 창업 문의
   ============================================ */
.sect10_wrap {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	max-width: 700px;
	margin: 0 auto;
	align-items: start;
}
.sect10_form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.sect10_form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	color: var(--color-text-light);
}
.sect10_form label { font-size: 15px; }
.sect10_form label span { font-weight: 500; color: var(--color-text); }
.sect10_form input,
.sect10_form textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 16px;
	border: 1px solid var(--color-silver);
	border-radius: var(--radius);
	background: var(--color-white);
}
.sect10_form textarea { resize: vertical; min-height: 100px; }
.sect10_form .btn_primary { margin-top: 8px; }
.sect10_contact {
	padding: 20px;
	background: var(--color-bg-light);
	border-radius: var(--radius-lg);
	min-width: 200px;
	text-align: center;
}
.contact_tel {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
}
.contact_tel a { color: var(--color-navy); }

/* ============================================
   11. 푸터
   ============================================ */
.section-footer { background: var(--color-black); color: var(--color-silver); padding: 40px 0; }
#footer { width: 100%; }
.footer_inner {
	text-align: center;
	padding: 20px 0;
}
.footer_logo img { height: 60px; opacity: 0.9; margin-bottom: 14px; }
.footer_brand { font-size: 18px; font-weight: bold; color: var(--color-white); margin-bottom: 6px; }
.footer_tagline { font-size: 15px; color: var(--color-silver-dark); margin-bottom: 18px; }
.footer_tel { font-size: 17px; margin-bottom: 6px; }
.footer_tel a { color: var(--color-white); }
.footer_time { font-size: 14px; margin-bottom: 22px; color: var(--color-silver-dark); }
.footer_copy { font-size: 13px; color: var(--color-text-light); margin: 0; }

/* ============================================
   우측 메인 네비
   ============================================ */
.main_nav {
	position: fixed;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 998;
}
.main_nav ul { display: flex; flex-direction: column; gap: 4px; }
.main_nav a {
	display: block;
	padding: 8px 12px;
	font-size: 12px;
	color: var(--color-text-light);
	background: var(--color-white);
	border-radius: var(--radius);
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: background 0.2s, color 0.2s;
}
.main_nav a:hover,
.main_nav a.on {
	color: var(--color-white);
	background: var(--color-navy);
}
.main_nav .kakao a { background: var(--color-navy); color: var(--color-white); }
.main_nav .kakao a:hover { background: var(--color-navy-mid); }

/* ============================================
   fullPage (PC)
   ============================================ */
.fp-section { transition: none; }
