@font-face {
	font-family: 'SUIT';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraLight.woff2') format('woff2');
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: 'SUIT';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'SUIT';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'SUIT';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'SUIT';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'SUIT';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-style: normal;
}

/* main_re.html dedicated stylesheet
   Source: Figma "love-marriage-info-redesign" (node 2:4) */

:root {
	--c-brand: #e05a70;
	--c-brand-2: #e8198b;
	--c-text: #1e2229;
	--c-text-muted: #565d6d;
	--c-text-faint: #8a92a6;
	--c-bg: #f4f6f9;
	--c-border: #e9ebf1;
	--c-tag-bg: #fff0f2;
	--c-info-bg: #ebf1ff;
	--c-info-badge: #3b82f6;
	--c-footer-bg: #111317;
	--c-naver: #2db400;
	--font-sans: 'SUIT', 'Manrope', "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
	--font-serif: 'Nanum Myeongjo', serif;
	--page-max: 1440px;
	--gutter: 80px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-sans);
	color: var(--c-text);
	background: var(--c-bg);
}

img {
	max-width: 100%;
	vertical-align: top;
	border: 0;
}

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

h1, h2, h3, p {
	margin: 0;
}

/* ---------- layer popup (divpop1) ---------- */
.layer-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999;
	max-height: 90vh;
	max-width: 90vw;
	overflow-y: auto;
}
.layer-popup__box { background: #000; padding: 1px; }
.layer-popup__box img { display: block; max-width: 100%; height: auto; }
.layer-popup__bar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	padding: 6px 8px;
	background: #000;
	color: #fff;
	font-size: 12px;
}
.layer-popup__bar label { display: flex; align-items: center; gap: 4px; }
.layer-popup__bar a { color: #ff4d4d; font-weight: 700; }

.eyebrow {
	font-size: 12px;
	font-weight: 700;
	color: var(--c-brand);
}
.eyebrow--white { color: rgba(255,255,255,0.93); }
.eyebrow--blue { color: var(--c-info-badge); font-size: 11px; }
.eyebrow--brand { color: var(--c-brand); font-size: 11px; }

.badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
}
.badge--blue { background: var(--c-info-badge); color: #fff; }
.badge--muted { background: var(--c-bg); border: 1px solid var(--c-border); color: var(--c-text-muted); font-weight: 600; font-size: 12px; padding: 10px 16px; border-radius: 8px; }

.btn {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14px;
	white-space: nowrap;
	cursor: pointer;
	border: 0;
}
.btn--brand { background: var(--c-brand); color: #fff; }
.btn--white { background: #fff; color: var(--c-text); }
.btn--dark { background: var(--c-text); color: #fff; padding: 10px 16px; border-radius: 8px; font-size: 13px; }
.btn--white-brand { background: #fff; color: var(--c-brand-2); padding: 12px 20px; border-radius: 8px; font-size: 13px; }
.btn--naver { background: var(--c-naver); color: #fff; padding: 10px 16px; border-radius: 8px; font-size: 12px; gap: 6px; }
.btn--naver img {
	height: 16px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	padding-right: 6px;
	border-right: 1px solid rgba(255,255,255,0.4);
}

/* ---------- topbar ---------- */
.topbar { background: var(--c-brand); color: #fff; font-size: 12px; }
.topbar__inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 10px var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.topbar__msg { font-weight: 600; }
.topbar__utils { display: flex; gap: 16px; }
.topbar__utils a { text-decoration: underline; }

/* ---------- header ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--c-border); }
.site-header__inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 24px var(--gutter);
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-header__logo img { height: 60px; width: auto; }
.site-header__nav { display: flex; gap: 32px; font-weight: 600; font-size: 15px; flex-wrap: wrap; }

.nav-item {
	position: relative;
	padding-bottom: 24px;
	margin-bottom: -24px;
}
.nav-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	padding: 8px;
	min-width: 180px;
	display: none;
	flex-direction: column;
	gap: 2px;
	z-index: 50;
}
.nav-item:hover .nav-dropdown { display: flex; }
.nav-dropdown a {
	display: block;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	color: var(--c-text-muted);
	white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--c-tag-bg); color: var(--c-brand); font-weight: 600;}
.site-header__right { display: flex; align-items: center; gap: 24px; }
.site-header__phone { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; white-space: nowrap; }
.site-header__phone span { font-weight: 600; font-size: 11px; color: var(--c-text-muted); }
.site-header__phone strong { font-weight: 800; font-size: 22px; color: var(--c-brand); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: rgba(26,29,32,0.4); }
.hero__inner {
	position: relative;
	max-width: var(--page-max);
	margin: 0 auto;
	width: 100%;
	padding: 64px var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.hero__text { display: flex; flex-direction: column; gap: 24px; max-width: 640px; }
.hero__badge {
	display: inline-flex;
	padding: 6px 12px;
	border-radius: 100px;
	background: rgba(255,255,255,0.13);
	border: 1px solid rgba(255,255,255,0.27);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	align-self: flex-start;
}
.hero__title { font-family: var(--font-serif); font-size: 44px; line-height: 1.3; color: #fff; font-weight: 400; }
.hero__desc { font-size: 16px; line-height: 1.5; color: rgba(255,255,255,0.93); }
.hero__ctas { display: flex; gap: 12px; }

.hero-login-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 12px 12px rgba(0,0,0,0.08);
	padding: 32px;
	width: 360px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.hero-login-card__title { display: flex; flex-direction: column; gap: 4px; }
.hero-login-card__title strong { font-weight: 800; font-size: 16px; }
.hero-login-card__title span { font-size: 12px; color: var(--c-text-muted); }
.hero-login-card__form { width: 100%; }

.login-form { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.login-form input {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid var(--c-border);
	background: var(--c-bg);
	font-size: 13px;
	font-family: var(--font-sans);
	color: var(--c-text);
}
.login-form input::placeholder { color: var(--c-text-faint); }
.login-form button {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: 0;
	background: var(--c-brand);
	color: #fff;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
}
.login-links {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 12px;
	margin-top: 10px;
	flex-wrap: wrap;
	gap: 10px;
}
.login-links a { color: var(--c-brand); font-weight: 600; }
.login-links span { color: var(--c-text-faint); opacity: 0.5}
.login-welcome {
	font-size: 14px;
	color: var(--c-text);
	background: var(--c-bg);
	border-radius: 8px;
	padding: 14px 16px;
	width: 100%;
}

/* ---------- content grid (board cards) ---------- */
.content-grid {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 64px var(--gutter);
	display: flex;
	gap: 24px;
	align-items: stretch;
}
.board-card {
	flex: 1 0 0;
	min-width: 0;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.board-card__header { display: flex; align-items: center; justify-content: space-between; }
.board-card__header h2 { font-size: 16px; font-weight: 800; }
.board-card__header h2 strong { color: var(--c-brand); font-weight: 800; }
.board-card__more { color: var(--c-brand); font-size: 12px; font-weight: 700; }
.board-card__highlight { border-radius: 12px; overflow: hidden; height: 140px; }
.board-card__highlight img { width: 100%; height: 100%; object-fit: cover; }

/* rg_lastest(default_re) text-list output: bbs/skin/lastest/default_re */
.mre-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 4px;
	border-bottom: 1px solid var(--c-border);
}
.mre-row__title {
	flex: 1 0 0;
	min-width: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--c-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.mre-row__date { flex-shrink: 0; font-size: 12px; color: var(--c-text-faint); }
.mre-row:hover .mre-row__title { color: var(--c-brand); }

/* rg_lastest(default_gallery_thumbnail5_re) output: bbs/skin/lastest/default_gallery_thumbnail5_re */
.board-card__gallery.lastest-embed {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.mre-photo-card { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.mre-photo-card__thumb {
	display: block;
	height: 140px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 16px -6px rgba(0,0,0,0.07);
}
.mre-photo-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .15s ease; }
.mre-photo-card:hover .mre-photo-card__thumb img { transform: scale(1.05); }
.mre-photo-card__caption {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--c-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* rg_lastest(default_gallery_wedding_re) output: bbs/skin/lastest/default_gallery_wedding_re */
.wedding-gallery__grid.lastest-embed {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.mre-gallery-item { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.mre-gallery-item__img { display: block; height: 280px; border-radius: 12px; overflow: hidden; }
.mre-gallery-item__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .15s ease; }
.mre-gallery-item:hover .mre-gallery-item__img img { transform: scale(1.05); }
.mre-gallery-item__text { display: flex; flex-direction: column; gap: 4px; }
.mre-gallery-item__title { font-size: 14px; font-weight: 700; color: var(--c-text); }
.mre-gallery-item__sub { font-size: 12px; color: var(--c-text-faint); }

/* ---------- wedding gallery ---------- */
.wedding-gallery {
	background: #fff;
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
	padding: 64px var(--gutter) 80px;
}
.wedding-gallery > * { max-width: var(--page-max); margin-left: auto; margin-right: auto; }
.wedding-gallery__header { text-align: center; display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.wedding-gallery__header h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 800; }
.wedding-gallery__header .desc { font-size: 14px; color: var(--c-text-muted); }

/* ---------- international guide ---------- */
.intl-guide {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 80px var(--gutter) 40px;
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
}
.intl-guide__highlight {
	background: var(--c-brand);
	border-radius: 24px;
	box-shadow: 0 16px 16px rgba(224,90,112,0.2);
	padding: 40px;
	flex: 0 0 480px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.intl-guide__highlight h2 { font-family: var(--font-serif); font-size: 36px; line-height: 1.3; color: #fff; font-weight: 400; }
.intl-guide__highlight .desc { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.93); }
.intl-guide__countries { flex: 1 1 360px; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.country-card {
	min-width: 0;
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.country-card__img { border-radius: 8px; overflow: hidden; height: 120px; }
.country-card__img img { width: 100%; height: 100%; object-fit: cover; }
.country-card h3 { font-size: 14px; font-weight: 800; }
.country-card p { font-size: 12px; line-height: 1.4; color: var(--c-text-muted); }
.quick-info-strip {
	background: var(--c-info-bg);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	gap: 16px;
	align-items: center;
}
.quick-info-strip p { font-size: 13px; font-weight: 500; }

/* ---------- domestic banner ---------- */
.domestic-banner { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--gutter) 80px; }
.domestic-banner__box {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 16px 32px rgba(0,0,0,0.1);
	min-height: 247px;
	display: flex;
	align-items: center;
}
.domestic-banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.domestic-banner__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.15), rgba(0,0,0,0.4)); }
.domestic-banner__content {
	position: relative;
	background: rgba(0,0,0,0.4);
	width: 100%;
	padding: 56px var(--gutter);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.domestic-banner__row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.domestic-banner__row h2 { font-family: var(--font-serif); font-size: 36px; color: #fff; font-weight: 400; flex-shrink: 0; }
.domestic-banner__row .desc { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.93); flex: 1 0 260px; }
.domestic-banner__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- partner logos ---------- */
.partner-logos {
	background: #fff;
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
	padding: 40px var(--gutter);
}
.partner-logos > * { max-width: var(--page-max); margin-left: auto; margin-right: auto; }
.partner-logos__label { font-size: 12px; font-weight: 700; color: var(--c-text-faint); margin-bottom: 24px; }
.partner-logos__flex { display: flex; flex-wrap: wrap; gap: 24px; }

/* ---------- contact footer ---------- */
.contact-footer {
	background: #fff;
}
.contact-footer__inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 64px var(--gutter);
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}
.inquiry-card { display: flex; flex-direction: column; gap: 16px; width: 627px; max-width: 100%; }
.inquiry-card h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 800; }
.inquiry-card .desc { font-size: 14px; color: var(--c-text-muted); }
.inquiry-card__grid { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.call-card {
	flex: 1 0 160px;
	background: var(--c-bg);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.call-card span { font-size: 11px; text-transform: uppercase; color: var(--c-text-muted); }
.call-card strong { font-size: 20px; font-weight: 800; color: var(--c-brand-2); }
.cta-online {
	flex: 1 0 160px;
	background: var(--c-brand);
	border-radius: 12px;
	min-height: 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 0 20px;
	text-align: center;
}
.cta-online__title { font-size: 18px; font-weight: 800; color: #fff; }
.cta-online__link { font-size: 14px; font-weight: 500; color: #fff; }

.domain-cards { flex: 1 0 300px; display: flex; flex-direction: column; gap: 12px; }
.domain-card {
	background: var(--c-bg);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.domain-card__info { display: flex; flex-direction: column; gap: 4px; }
.domain-card__info strong { font-size: 18px; font-weight: 800; }
.domain-card__url { font-size: 20px; font-weight: 800; }
.domain-card__url--blue { color: var(--c-info-badge); }
.domain-card__url--brand { color: var(--c-brand); }

/* ---------- footer legal ---------- */
.footer-legal { background: var(--c-footer-bg); padding: 40px var(--gutter) 64px; }
.footer-legal > * { max-width: var(--page-max); margin-left: auto; margin-right: auto; }
.footer-legal__links { display: flex; gap: 24px; font-size: 13px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-legal__links a:nth-child(1),
.footer-legal__links a:nth-child(2) { color: #fff; font-weight: 700; }
.footer-legal__links a:nth-child(3),
.footer-legal__links a:nth-child(4) { color: var(--c-text-faint); }
.footer-legal__rule { border: 0; border-top: 1px solid rgba(255,255,255,0.12); margin: 0 0 24px; }
.footer-legal__info { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-legal__text { color: var(--c-text-faint); font-size: 12px; line-height: 1.6; max-width: 800px; }
.footer-legal__text p { margin-bottom: 8px; }
.footer-legal__copyright { color: var(--c-text-muted); font-size: 11px; }

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
	.intl-guide { flex-direction: column; align-items: stretch; }
	.intl-guide__highlight { flex: 0 0 auto; width: 100%; }
}
@media (max-width: 640px) {
	.country-grid { grid-template-columns: repeat(2, 1fr); }
	.wedding-gallery__grid.lastest-embed { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
	:root { --gutter: 24px; }
	.site-header__inner { flex-wrap: wrap; min-height: auto; }
	.site-header__nav { order: 3; width: 100%; gap: 16px; }
	.content-grid { flex-wrap: wrap; }
	.board-card { flex: 1 1 100%; }
	.hero__inner { flex-direction: column; align-items: flex-start; }
	.domestic-banner__row { flex-direction: column; align-items: flex-start; }
}
