/* =========================================================
   Mentor Layout
   - Container
   - Section
   - Header
   - Navigation
   - Member Links
   - Footer
   - Floating CTA
   - Mobile Bottom
========================================================= */

/* =========================================================
   Container
========================================================= */
.wrap {
	width: min(1280px, calc(100% - 64px));
	margin: 0 auto;
}

/* =========================================================
   Section Common
========================================================= */
.section {
	padding: 90px 0;
}
.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
}
.section h2 {
	font-size: 38px;
	line-height: 1.18;
	letter-spacing: -1.2px;
}
.section-desc {
	max-width: 560px;
	margin-top: 12px;
	color: var(--text);
	font-size: 17px;
	line-height: 1.75;
}
.point {
	color: var(--orange);
}

/* =========================================================
   Header
========================================================= */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, .86);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(229, 231, 235, .8);
}
.header-inner {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	color: var(--dark);
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.8px;
}
.logo span {
	color: var(--blue);
}

/* =========================================================
   Global Navigation
========================================================= */
.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	min-width: 0;
	color: var(--dark);
	font-size: 15px;
	font-weight: 800;
}
.nav a {
	position: relative;
	white-space: nowrap;
	transition: .2s;
}
.nav a:hover {
	color: var(--blue);
}
.nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--blue);
	transform: translateX(-50%);
	transition: .2s;
}
.nav a:hover::after {
	width: 100%;
}

/* =========================================================
   Header CTA
========================================================= */
.header-cta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-shrink: 0;
}

/* =========================================================
   Member Links
========================================================= */
.member-links {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-right: 4px;
	color: #475467;
	font-size: 13px;
	font-weight: 800;
}
.member-links a {
	position: relative;
	color: #475467;
	white-space: nowrap;
	transition: .2s;
}
.member-links a:hover {
	color: var(--blue);
}
.member-links a + a::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 10px;
	margin-right: 8px;
	vertical-align: -1px;
}

/* =========================================================
   Mobile Menu Button
========================================================= */
.hamb {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 12px;
	background: #111827;
	color: #fff;
	font-size: 22px;
}
.hamb svg {
	width: 22px;
	height: 22px;
	stroke-width: 2.5;
}

/* =========================================================
   Mobile Navigation
========================================================= */
.mobile-nav {
	display: none;
}
.mobile-member-links {
	display: none;
}

/* =========================================================
   Footer
========================================================= */
.footer {
	background: #111827;
	color: #cbd5e1;
	padding: 70px 0 110px;
}
.footer-inner {
	display: block;
}
.footer-top {
	display: grid;
	grid-template-columns: 1.35fr .75fr .9fr .85fr;
	gap: 44px;
	align-items: flex-start;
}

/* Footer Brand */
.footer-brand strong {
	display: block;
	color: #fff;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: -1.2px;
}
.footer-slogan {
	margin-top: 18px;
	color: #94a3b8;
	font-size: 16px;
	line-height: 1.8;
}

/* Footer Column Title */
.footer-title {
	display: block;
	margin: 0 0 18px;
	color: #fff;
	font-size: 17px;
	line-height: 1.4;
	font-weight: 900;
	letter-spacing: -0.4px;
}

/* Footer Menu */
.footer-menu ul {
	display: grid;
	gap: 10px;
}
.footer-menu a {
	color: #94a3b8;
	font-size: 15px;
	font-weight: 700;
	transition: .2s;
}
.footer-menu a:hover {
	color: #fff;
}

/* Family Site */
.footer-family ul {
	display: grid;
	gap: 10px;
}
.family-link {
	display: block;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	background: rgba(255, 255, 255, .04);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	transition: .2s;
}
.family-link span {
	display: block;
	margin-top: 4px;
	color: #94a3b8;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 600;
}
.family-link:hover {
	border-color: rgba(37, 99, 235, .65);
	background: rgba(37, 99, 235, .15);
}

/* Footer Contact */
.footer-contact p {
	margin-bottom: 12px;
}
.footer-contact p span {
	display: block;
	margin-bottom: 2px;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 700;
}
.footer-contact p a {
	color: #fff;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 900;
}
.footer-kakao {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	margin-top: 8px;
	padding: 0 16px;
	border-radius: 999px;
	background: #fee500;
	color: #111827;
	font-size: 14px;
	font-weight: 900;
}

/* Footer Policy */
.footer-policy {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-top: 48px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-policy a {
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	transition: .2s;
}
.footer-policy a:hover {
	color: #93c5fd;
}
.footer-policy a:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 11px;
	margin-left: 22px;
	background: rgba(255, 255, 255, .22);
	vertical-align: -1px;
}

/* Footer Company */
.footer-bottom {
	margin-top: 26px;
}
.footer-company {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	max-width: 1040px;
}
.footer-company p {
	color: #94a3b8;
	font-size: 14px;
	line-height: 1.6;
}
.footer-company b {
	margin-right: 6px;
	color: #cbd5e1;
	font-weight: 800;
}
.footer-company a {
	color: #94a3b8;
	transition: .2s;
}
.footer-company a:hover {
	color: #fff;
}
.footer-copy {
	margin-top: 18px;
	color: #64748b;
	font-size: 13px;
}

/* =========================================================
   Floating CTA
========================================================= */
.floating,
.floating-cta {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 900;
	display: grid;
	gap: 10px;
}
.floating a,
.floating-cta a {
	height: 54px;
	padding: 0 20px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	box-shadow: var(--shadow);
}
.float-reserve,
.floating-reserve {
	background: var(--orange);
	color: #fff;
}
.float-call,
.floating-call {
	background: #111827;
	color: #fff;
}

/* =========================================================
   Mobile Bottom CTA
========================================================= */
.mobile-bottom {
	display: none;
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1120px) {
	.nav {
		gap: 22px;
		font-size: 14px;
	}
	.member-links {
		display: none;
	}
}

@media (max-width: 980px) {
	.section {
		padding: 70px 0;
	}
	.section-head {
		display: block;
	}
	.section h2 {
		font-size: 30px;
	}
	.nav,
	.header-cta {
		display: none;
	}
	.hamb {
		display: grid;
		place-items: center;
	}
	.mobile-nav {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		z-index: 999;
		display: none;
		padding: 18px 20px;
		background: #fff;
		border-bottom: 1px solid var(--line);
		box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
	}
	.mobile-nav.open {
		display: grid;
		gap: 14px;
	}
	.mobile-nav a {
		color: var(--dark);
		font-weight: 900;
	}
	.mobile-member-links {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin-top: 8px;
		padding-top: 14px;
		border-top: 1px solid var(--line);
	}
	.mobile-member-links a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 42px;
		border-radius: 12px;
		background: #f3f6fb;
		color: #111827;
		font-size: 14px;
		font-weight: 900;
	}
	.floating,
	.floating-cta {
		display: none;
	}
	.mobile-bottom {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1200;
		display: grid;
		grid-template-columns: 1fr 1fr 1.2fr;
		gap: 8px;
		padding: 10px;
		background: #fff;
		border-top: 1px solid var(--line);
	}
	.mobile-bottom a {
		height: 48px;
		border-radius: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 900;
	}
	.mobile-bottom .call {
		background: #111827;
		color: #fff;
	}
	.mobile-bottom .talk {
		background: #fee500;
		color: #111827;
	}
	.mobile-bottom .res {
		background: var(--blue);
		color: #fff;
	}
	.footer {
		padding: 58px 0 96px;
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.wrap {
		width: min(100% - 28px, 1280px);
	}
	.header-inner {
		height: 66px;
	}
	.logo {
		font-size: 21px;
	}
	.mobile-nav {
		top: 66px;
	}
	.section {
		padding: 58px 0;
	}
	.footer-top {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-brand strong {
		font-size: 26px;
	}
	.footer-slogan {
		font-size: 15px;
	}
	.footer-cta {
		display: grid;
		grid-template-columns: 1fr;
	}
	.footer-btn {
		width: 100%;
	}
	.footer-policy {
		display: grid;
		gap: 12px;
	}
	.footer-policy a:not(:last-child)::after {
		display: none;
	}
	.footer-company {
		display: grid;
		gap: 6px;
	}
}

.footer-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}
.footer-quick-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 42px;
	padding: 0 15px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: .18s ease;
}
.footer-quick-link:hover {
	background: #fff;
	color: #111827;
	transform: translateY(-1px);
}
.footer-quick-link i,
.footer-quick-link svg {
	width: 17px;
	height: 17px;
	stroke-width: 2.5;
}
.footer-quick-instagram:hover {
	color: #db2777;
}
.footer-quick-facebook:hover {
	color: #2563eb;
}
.footer-quick-blog:hover {
	color: #16a34a;
}
.footer-quick-site:hover {
	color: #111827;
}



.section-head.is-center {
	display: block;
	text-align: center;
}

.section-head.is-center .section-desc {
	margin-left: auto;
	margin-right: auto;
}

.section-cta {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

/* =========================================================
   Sub Hero
========================================================= */
.sub-hero {
	padding: 116px 0 100px;

}

.sub-hero-box {
	position: relative;
	min-height: 190px;
	padding: 42px 48px;
	border: 1px solid rgba(226, 232, 240, .9);
	border-radius: 28px;
	background:
		radial-gradient(circle at 88% 28%, rgba(37, 99, 235, .16), transparent 30%),
		radial-gradient(circle at 12% 90%, rgba(255, 106, 0, .08), transparent 26%),
		linear-gradient(135deg, #f8fbff 0%, #eef5ff 54%, #ffffff 100%);
	box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	overflow: hidden;
}

.sub-kicker {
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
	color: var(--blue);
	font-size: 14px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: .4px;
}

.sub-hero h1 {
	color: var(--dark);
	font-size: 42px;
	line-height: 1.16;
	font-weight: 900;
	letter-spacing: -1.4px;
}

.sub-hero p {
	margin-top: 14px;
	color: var(--text);
	font-size: 17px;
	line-height: 1.7;
	font-weight: 700;
}

.sub-hero-icon {
	width: 92px;
	height: 92px;
	border-radius: 28px;
	background: rgba(255, 255, 255, .72);
	color: var(--blue);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .12);
}

.sub-hero-icon svg {
	width: 46px;
	height: 46px;
	stroke-width: 1.9;
}

@media (max-width: 980px) {
	.sub-hero {
		padding: 96px 0 28px;
	}
	.sub-hero-box {
		padding: 34px;
		border-radius: 24px;
	}
	.sub-hero h1 {
		font-size: 34px;
	}
}

@media (max-width: 640px) {
	.sub-hero {
		padding: 84px 0 22px;
	}
	.sub-hero-box {
		min-height: auto;
		padding: 28px 24px;
		border-radius: 22px;
		align-items: flex-start;
	}
	.sub-hero h1 {
		font-size: 30px;
	}
	.sub-hero p {
		font-size: 15px;
	}
	.sub-hero-icon {
		display: none;
	}
}


/* =========================================================
   모바일에서 br 숨기기
========================================================= */
@media(max-width:767px){
	br.desktop-br{
		display:none;
	}
}

/* =========================================================
   Mentor shop unified header
========================================================= */
.header-confirm-link{display:inline-flex;align-items:center;justify-content:center;height:46px;padding:0 15px;border:1px solid var(--line);border-radius:12px;background:var(--blue-soft);color:var(--blue2);font-size:13px;font-weight:900;white-space:nowrap;transition:.2s}
.header-confirm-link:hover{border-color:var(--blue);background:var(--blue);color:#fff}
.mobile-header-contact{display:none;align-items:center;gap:7px;margin-left:auto}
.mobile-header-contact-link{display:grid;place-items:center;width:38px;height:38px;border:1px solid var(--line);border-radius:50%;background:#fff;color:var(--dark)}
.mobile-header-contact-link.is-kakao{border-color:#fee500;background:#fee500;color:#321b1b}
.mobile-header-contact-link svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.mobile-header-contact-link.is-kakao svg{fill:currentColor;stroke:none}
.hamb,.hamb:hover,.hamb:focus,.hamb:active{padding:0;border:0;background:transparent;color:var(--dark);box-shadow:none;outline:0;appearance:none;-webkit-appearance:none;-webkit-tap-highlight-color:transparent}
.hamb-lines{position:relative;display:block;width:25px;height:20px}
.hamb-lines span{position:absolute;left:0;width:100%;height:3px;border-radius:999px;background:currentColor;transition:top .22s ease,transform .22s ease,opacity .16s ease}
.hamb-lines span:nth-child(1){top:0}.hamb-lines span:nth-child(2){top:8.5px}.hamb-lines span:nth-child(3){top:17px}
.hamb[aria-expanded="true"] .hamb-lines span:nth-child(1){top:8.5px;transform:rotate(45deg)}
.hamb[aria-expanded="true"] .hamb-lines span:nth-child(2){opacity:0}
.hamb[aria-expanded="true"] .hamb-lines span:nth-child(3){top:8.5px;transform:rotate(-45deg)}
.mobile-nav-backdrop{display:none}
.footer-login-links{display:flex;align-items:center;justify-content:flex-end;gap:12px;margin-top:14px}
.footer-login-links a{color:#cbd5e1;font-size:13px;font-weight:800}
.footer-login-links a:hover{color:#fff}

@media(max-width:980px){
	.header-inner{gap:8px}
	.mobile-header-contact{display:flex}
	.mobile-nav-backdrop{position:fixed;top:76px;right:0;bottom:0;left:0;z-index:998;display:block;background:rgba(15,23,42,.42);opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}
	.mobile-nav-backdrop.is-open{opacity:1;visibility:visible}
	.mobile-nav{z-index:999;max-height:calc(100svh - 76px);overflow-y:auto;padding:18px 20px}
	.mobile-nav.open{display:grid;gap:7px}
	.mobile-nav>a{padding:5px 0;font-size:24px;line-height:1.15;font-weight:900;letter-spacing:-.04em}
	.mobile-reservation-links{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:8px;padding-top:14px;border-top:1px solid var(--line)}
	.mobile-reservation-links a{display:flex;align-items:center;justify-content:center;height:42px;border-radius:12px;font-size:13px;font-weight:900;text-align:center}
	.mobile-reservation-links .mobile-confirm-link{border:1px solid var(--line);background:var(--blue-soft);color:var(--blue2)}
	.mobile-reservation-links .mobile-reserve-link{background:var(--blue);color:#fff}
	body.mobile-menu-open{overflow:hidden}
}

@media(max-width:640px){
	.logo{font-size:18px;letter-spacing:-.7px}
	.mobile-header-contact{gap:5px}
	.mobile-header-contact-link{width:32px;height:32px}
	.mobile-header-contact-link svg{width:16px;height:16px}
	.hamb{width:38px;height:38px}
	.mobile-nav-backdrop{top:66px}
	.mobile-nav{max-height:calc(100svh - 66px)}
	.footer-login-links{justify-content:flex-start}
}
