#bnhw-home {
}

#bnhw-home * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#bnhw-home {
	scroll-behavior: smooth;
}

#bnhw-home {
	font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.68;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

#bnhw-home a {
	color: inherit;
	text-decoration: none;
}

#bnhw-home img {
	display: block;
	max-width: 100%;
}

#bnhw-home .wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 28px;
}

#bnhw-home .serif {
	font-family: 'Cormorant Garamond', serif;
}

#bnhw-home /* ---------- NAV ---------- */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(248,245,238,.85);
	border-bottom: 1px solid transparent;
	transition: border-color .3s, box-shadow .3s;
}

#bnhw-home .nav.scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 4px 24px rgba(10,22,40,.05);
}

#bnhw-home .nav .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

#bnhw-home .nav .brand {
	display: flex;
	align-items: center;
	gap: 11px;
}

#bnhw-home .nav .brand img {
	height: 38px;
	width: auto;
}

#bnhw-home .nav .brand .nm {
	font-weight: 800;
	font-size: 16px;
	color: var(--navy-deep);
	letter-spacing: -.01em;
}

#bnhw-home .nav .links {
	display: flex;
	align-items: center;
	gap: 32px;
}

#bnhw-home .nav .links a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink);
	transition: color .2s;
}

#bnhw-home .nav .links a:hover {
	color: var(--crimson);
}

#bnhw-home .nav .kakao {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--crimson);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 18px;
	border-radius: 3px;
	transition: background .2s, transform .15s;
}

#bnhw-home .nav .kakao:hover {
	background: var(--crimson-br);
}

#bnhw-home .nav .kakao:active {
	transform: translateY(1px);
}

#bnhw-home .nav .menu-btn {
	display: none !important;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--navy-deep);
}

#bnhw-home /* ---------- HERO ---------- */
.hero {
	position: relative;
	background: linear-gradient(158deg,#0E1826 0%,#152134 58%,#1B2B44 100%);
	color: #fff;
	padding: 150px 0 110px;
	overflow: hidden;
}

#bnhw-home .hero .arc {
	position: absolute;
	top: -10%;
	right: -6%;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	border: 1.5px solid rgba(176,85,99,.22);
	pointer-events: none;
}

#bnhw-home .hero .arc.two {
	width: 400px;
	height: 400px;
	top: 6%;
	right: 2%;
	border-color: rgba(184,155,110,.13);
}

#bnhw-home .hero .axis-line {
	position: absolute;
	left: 0;
	bottom: 78px;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg,transparent,rgba(255,255,255,.16) 30%,var(--crimson-br) 100%);
}

#bnhw-home .hero .axis-line::after {
	content: "";
	position: absolute;
	right: 6%;
	top: -4px;
	border-left: 9px solid var(--crimson-br);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}

#bnhw-home .hero .inner {
	position: relative;
	z-index: 2;
	max-width: 880px;
	margin: 0 auto;
}

#bnhw-home .hero .eyebrow {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 19px;
	letter-spacing: .14em;
	color: var(--gold);
	margin-bottom: 22px;
}

#bnhw-home .hero h1 {
	font-size: clamp(32px,5.2vw,54px);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -.02em;
}

#bnhw-home .hero h1 b {
	color: var(--crimson-br);
	font-weight: 800;
}

#bnhw-home .hero .sub {
	margin-top: 24px;
	font-size: clamp(16.5px,2.3vw,20.5px);
	font-weight: 500;
	color: #DBE1EB;
	line-height: 1.65;
	max-width: 660px;
}

#bnhw-home .hero .sub b {
	color: #fff;
	font-weight: 700;
}

#bnhw-home .hero .model {
	margin-top: 26px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	border: 1px solid rgba(201,168,76,.4);
	border-radius: 3px;
	padding: 12px 18px;
}

#bnhw-home .hero .model .lbl {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	color: var(--gold);
	font-size: 14px;
	letter-spacing: .1em;
	padding-right: 14px;
	border-right: 1px solid rgba(255,255,255,.22);
}

#bnhw-home .hero .model .txt {
	font-size: 14px;
	font-weight: 600;
	color: #EAEEF4;
}

#bnhw-home .hero .model .txt b {
	color: var(--gold);
}

#bnhw-home .hero .cta {
	display: flex;
	gap: 14px;
	margin-top: 38px;
	flex-wrap: wrap;
}

#bnhw-home .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-weight: 700;
	font-size: 15.5px;
	padding: 15px 26px;
	border-radius: 3px;
	transition: transform .15s, background .2s, box-shadow .2s;
	cursor: pointer;
	border: none;
}

#bnhw-home .btn:active {
	transform: translateY(1px);
}

#bnhw-home .btn-kakao {
	background: #E7C24E;
	color: #2A2008;
	box-shadow: 0 8px 22px rgba(30,26,12,.15);
}

#bnhw-home .btn-kakao:hover {
	background: #DDB840;
	box-shadow: 0 10px 28px rgba(30,26,12,.2);
}

#bnhw-home .btn-line {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,.4);
}

#bnhw-home .btn-line:hover {
	border-color: #fff;
	background: rgba(255,255,255,.06);
}

#bnhw-home .hero .promise {
	margin-top: 34px;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 16px;
	color: #9FA9BC;
	letter-spacing: .01em;
}

#bnhw-home .hero .promise span {
	color: var(--gold);
}

#bnhw-home /* ---------- HOOK STRIP ---------- */
.hook {
	background: linear-gradient(180deg,#F1ECE1,#F6F3EC);
	padding: 54px 0;
	text-align: center;
	border-bottom: 1px solid var(--line);
}

#bnhw-home .hook .tick {
	width: 38px;
	height: 2px;
	background: var(--crimson);
	margin: 0 auto 24px;
	border-radius: 2px;
}

#bnhw-home .hook .a {
	display: block;
	font-size: clamp(16px,2.4vw,21px);
	color: var(--muted);
	font-weight: 600;
	letter-spacing: -.01em;
}

#bnhw-home .hook .b {
	display: block;
	margin-top: 12px;
	font-size: clamp(23px,3.9vw,37px);
	color: var(--crimson);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.32;
}

#bnhw-home /* ---------- INTRO ---------- */
.intro {
	padding: 88px 0;
}

#bnhw-home .intro .kicker {
	font-size: 13px;
	letter-spacing: .22em;
	color: var(--crimson);
	font-weight: 700;
	margin-bottom: 18px;
}

#bnhw-home .intro h2 {
	font-size: clamp(23px,3.5vw,33px);
	font-weight: 800;
	line-height: 1.48;
	letter-spacing: -.02em;
	color: var(--navy-deep);
	max-width: 900px;
}

#bnhw-home .intro h2 b {
	color: var(--crimson);
}

#bnhw-home .intro p {
	margin-top: 22px;
	font-size: 17.5px;
	color: var(--muted);
	max-width: 780px;
	line-height: 1.85;
}

#bnhw-home /* ---------- METHOD (BNHW) ---------- */
.method {
	background: linear-gradient(180deg,#0E1826,#121E30);
	color: #fff;
	padding: 96px 0;
}

#bnhw-home .method .head {
	display: flex;
	align-items: baseline;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

#bnhw-home .method .head .en {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 19px;
	color: var(--gold);
	letter-spacing: .04em;
}

#bnhw-home .method .head .kr {
	font-size: 13px;
	letter-spacing: .2em;
	color: #9FA9BC;
	font-weight: 600;
}

#bnhw-home .method .lead {
	font-size: clamp(20px,3vw,28px);
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 52px;
	max-width: 640px;
	line-height: 1.4;
}

#bnhw-home .method .lead b {
	color: var(--crimson-br);
}

#bnhw-home .steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 26px;
}

#bnhw-home .steps::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 2%;
	right: 3%;
	height: 1.5px;
	background: linear-gradient(90deg,rgba(255,255,255,.25),var(--crimson-br));
}

#bnhw-home .steps::after {
	content: "";
	position: absolute;
	top: 16px;
	right: calc(3% - 2px);
	border-left: 10px solid var(--crimson-br);
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

#bnhw-home .step {
	position: relative;
}

#bnhw-home .step .dot {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--navy-deep);
	border: 2.5px solid #4A5A73;
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
}

#bnhw-home .step:nth-child(2) .dot {
	border-color: #6a4a56;
}

#bnhw-home .step:nth-child(3) .dot {
	border-color: #8a3f4f;
}

#bnhw-home .step:nth-child(4) .dot {
	border-color: var(--crimson-br);
	background: var(--crimson-br);
}

#bnhw-home .step .en {
	font-family: 'Cormorant Garamond', serif;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: .01em;
}

#bnhw-home .step:nth-child(4) .en {
	color: var(--crimson-br);
}

#bnhw-home .step .kr {
	font-size: 15.5px;
	font-weight: 700;
	margin-top: 6px;
}

#bnhw-home .step .desc {
	font-size: 14.5px;
	color: #B2BCCC;
	margin-top: 12px;
	line-height: 1.7;
	min-height: 70px;
}

#bnhw-home .step ul {
	list-style: none;
	margin-top: 18px;
	border-top: 1px solid var(--line-dk);
	padding-top: 16px;
}

#bnhw-home .step li {
	font-size: 14.5px;
	color: #E1E7EF;
	padding: 6px 0 6px 14px;
	position: relative;
}

#bnhw-home .step li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 4px;
	height: 4px;
	background: var(--crimson-br);
	border-radius: 50%;
}

#bnhw-home /* ---------- REPRESENTATIVE ---------- */
.rep {
	padding: 96px 0;
}

#bnhw-home .rep .kicker {
	font-size: 13px;
	letter-spacing: .22em;
	color: var(--crimson);
	font-weight: 700;
	margin-bottom: 36px;
}

#bnhw-home .rep .person {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 56px;
	align-items: start;
}

#bnhw-home .rep .person + .person {
	margin-top: 52px;
	padding-top: 52px;
	border-top: 1px solid var(--line);
}

#bnhw-home .rep .card {
	text-align: center;
}

#bnhw-home .rep .card img {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center 28%;
	margin: 0 auto 22px;
	border: 3px solid var(--gold);
	box-shadow: 0 20px 50px rgba(24,32,46,.13);
}

#bnhw-home .rep .card .name {
	font-size: 26px;
	font-weight: 800;
	color: var(--navy-deep);
	letter-spacing: .02em;
}

#bnhw-home .rep .card .en {
	font-family: 'Cormorant Garamond', serif;
	font-size: 17px;
	color: var(--muted);
	margin-top: 2px;
}

#bnhw-home .rep .card .title {
	font-size: 14px;
	color: var(--crimson);
	font-weight: 600;
	margin-top: 10px;
}

#bnhw-home .rep .card .badge {
	display: inline-block;
	margin-top: 18px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy-deep);
	border: 1px solid var(--gold);
	border-radius: 3px;
	padding: 9px 16px;
}

#bnhw-home .rep .detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

#bnhw-home .rep .block h3 {
	font-size: 12px;
	letter-spacing: .16em;
	color: var(--crimson);
	font-weight: 700;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}

#bnhw-home .rep .clist {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

#bnhw-home .rep .clist .c {
	display: flex;
	gap: 12px;
	font-size: 15.5px;
	align-items: baseline;
}

#bnhw-home .rep .clist .c .tag {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	color: var(--crimson);
	font-size: 15px;
	width: 24px;
	flex: none;
}

#bnhw-home .rep .clist .c .t {
	color: var(--ink);
	line-height: 1.55;
}

#bnhw-home .rep .clist .c .t b {
	font-weight: 700;
}

#bnhw-home .rep .awards {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

#bnhw-home .rep .aw {
	display: flex;
	gap: 14px;
	align-items: baseline;
}

#bnhw-home .rep .aw .yr {
	font-family: 'Cormorant Garamond', serif;
	font-size: 15.5px;
	font-weight: 600;
	color: var(--crimson);
	white-space: nowrap;
}

#bnhw-home .rep .aw .d {
	font-size: 15px;
	color: var(--ink);
	line-height: 1.45;
}

#bnhw-home .rep .aw .d span {
	color: var(--muted);
	font-size: 13px;
}

#bnhw-home .rep .certs {
	margin-top: 26px;
}

#bnhw-home .rep .certs .lb {
	font-size: 12px;
	letter-spacing: .14em;
	color: var(--muted);
	font-weight: 700;
	margin-bottom: 9px;
}

#bnhw-home .rep .certs .v {
	font-size: 14.5px;
	color: var(--ink);
	line-height: 1.75;
}

#bnhw-home /* ---------- PARTNERS ---------- */
.partners {
	background: var(--card);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 64px 0;
}

#bnhw-home .partners .lb {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--crimson);
	font-weight: 700;
	margin-bottom: 26px;
	white-space: nowrap;
}

#bnhw-home .partners .lb::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
}

#bnhw-home .partners .chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

#bnhw-home .partners .chip {
	font-size: 15.5px;
	font-weight: 600;
	color: var(--navy-deep);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 13px 22px;
	background: var(--paper);
	transition: border-color .2s, transform .15s;
}

#bnhw-home .partners .chip:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
}

#bnhw-home /* ---------- CTA ---------- */
.cta-sec {
	position: relative;
	background: linear-gradient(158deg,#121E30,#0E1826);
	color: #fff;
	padding: 92px 0;
	text-align: center;
	overflow: hidden;
}

#bnhw-home .cta-sec .arc {
	position: absolute;
	left: 50%;
	top: -40%;
	transform: translateX(-50%);
	width: 700px;
	height: 700px;
	border-radius: 50%;
	border: 1.5px solid rgba(176,85,99,.14);
}

#bnhw-home .cta-sec .inner {
	position: relative;
	z-index: 2;
}

#bnhw-home .cta-sec .pre {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 18px;
	color: var(--gold);
	margin-bottom: 16px;
}

#bnhw-home .cta-sec h2 {
	font-size: clamp(24px,4vw,38px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.35;
}

#bnhw-home .cta-sec p {
	margin-top: 16px;
	font-size: 17px;
	color: #BFC8D6;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.65;
}

#bnhw-home .cta-sec .cta {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-top: 34px;
	flex-wrap: wrap;
}

#bnhw-home /* ---------- FOOTER ---------- */
.foot {
	background: #070F1C;
	color: #8B95A8;
	padding: 52px 0 40px;
}

#bnhw-home .foot .top {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	align-items: flex-start;
}

#bnhw-home .foot .wm {
	font-family: 'Cormorant Garamond', serif;
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	letter-spacing: .04em;
}

#bnhw-home .foot .wm span {
	color: var(--crimson-br);
}

#bnhw-home .foot .wm .cc {
	display: block;
	font-family: 'Pretendard';
	font-size: 11px;
	letter-spacing: .34em;
	color: #5E6980;
	margin-top: 4px;
	font-weight: 600;
}

#bnhw-home .foot .info {
	font-size: 14.5px;
	line-height: 1.95;
	text-align: right;
}

#bnhw-home .foot .info b {
	color: #C4CBD6;
	font-weight: 600;
}

#bnhw-home .foot .info a:hover {
	color: #fff;
}

#bnhw-home .foot .divider {
	height: 1px;
	background: rgba(255,255,255,.08);
	margin: 34px 0 22px;
}

#bnhw-home .foot .bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12.5px;
	color: #5E6980;
}

#bnhw-home .foot .bottom .tag {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	color: #8B95A8;
}

#bnhw-home /* ---------- FLOATING KAKAO ---------- */
.float-kakao {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #E7C24E;
	color: #2A2008;
	font-weight: 800;
	font-size: 15px;
	padding: 15px 22px;
	border-radius: 50px;
	box-shadow: 0 10px 26px rgba(20,26,38,.22);
	transition: transform .18s, box-shadow .2s, background .2s;
}

#bnhw-home .float-kakao:hover {
	transform: translateY(-3px);
	background: #DDB840;
	box-shadow: 0 14px 34px rgba(20,26,38,.28);
}

#bnhw-home .float-kakao .ic {
	font-size: 18px;
}

#bnhw-home /* ---------- REVEAL ---------- */
.reveal {
	opacity: 1;
	transform: none;
}

#bnhw-home .reveal.in {
	opacity: 1;
	transform: none;
}

#bnhw-home /* ---------- RESPONSIVE ---------- */
@media (max-width:920px) {
	gap: 40px;
}

.rep .card {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.steps {
	grid-template-columns: 1fr 1fr;
	gap: 36px 26px;
}

.steps::before,.steps::after {
	display: none;
}

.step .desc {
	min-height: 0;
}	
}

@media (max-width:760px) {
	#bnhw-home .nav .links a:not(.kakao) {
		display: none;
	}
	
	#bnhw-home .nav .menu-btn {
		display: inline-flex;
	}
	
	#bnhw-home .nav.open .links {
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		padding: 8px 0;
		box-shadow: 0 12px 30px rgba(10,22,40,.1);
	}
	
	#bnhw-home .nav.open .links a:not(.kakao) {
		display: block;
		width: 100%;
		padding: 14px 28px;
	}
	
	#bnhw-home .nav.open .kakao {
		display: none;
	}
	
	#bnhw-home .hero {
		padding: 120px 0 90px;
	}
	
	#bnhw-home .hero .arc {
		width: 340px;
		height: 340px;
	}
	
	#bnhw-home .hero .arc.two {
		width: 240px;
		height: 240px;
	}
	
	#bnhw-home .rep .detail {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	#bnhw-home .foot .top {
		flex-direction: column;
	}
	
	#bnhw-home .foot .info {
		text-align: left;
	}
	
	#bnhw-home .float-kakao {
		right: 16px;
		bottom: 16px;
		padding: 14px 18px;
		font-size: 14px;
	}
	
	#bnhw-home .btn {
		flex: 1;
		min-width: 0;
	}
	
	#bnhw-home .hero .cta {
		width: 100%;
	}
}

@media (max-width:440px) {
	#bnhw-home .steps {
		grid-template-columns: 1fr;
	}
	
	#bnhw-home .wrap {
		padding: 0 20px;
	}
}

@media (prefers-reduced-motion:reduce) {
	#bnhw-home {
		scroll-behavior: auto;
	}
	
	#bnhw-home .reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	
	#bnhw-home * {
		animation: none !important;
	}
}

#bnhw-home:focus-visible {
	outline: 2.5px solid var(--gold);
	outline-offset: 3px;
	border-radius: 2px;
}