/*
Theme Name: Lim and Kim Impex
Theme URI: http://localhost/lim_kim/
Author: Lim and Kim Impex
Description: Modern business theme for Lim and Kim Impex Private Limited
Version: 1.0.0
Text Domain: lim-kim-impex
*/

:root {
	--ink: #101820;
	--muted: #637083;
	--line: #e6ebef;
	--paper: #ffffff;
	--soft: #f4f7f8;
	--brand: #2a1a72;
	--brand-rgb: 42, 26, 114;
	--brand-2: #47a7d8;
	--brand-2-rgb: 71, 167, 216;
	--accent-red: #d71920;
	--gold: #e9b44c;
	--shadow: 0 24px 70px rgba(15, 31, 45, 0.13);
}

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, "Albert Sans", Arial, sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

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

img {
	display: block;
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
p,
a,
span,
strong,
li {
	overflow-wrap: anywhere;
}

.hero-copy,
.modern-page-grid > *,
.premium-hero-grid > *,
.about-hero-grid > *,
.contact-hero-grid > *,
.brand-products-hero-grid > *,
.section-inner > *,
.service-feature-card,
.product-card,
.roadmap-card {
	min-width: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(214, 224, 229, 0.72);
	box-shadow: 0 16px 48px rgba(16, 24, 32, 0.05);
	backdrop-filter: blur(18px);
}

.site-header::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--brand), var(--brand-2));
	content: "";
}

.nav-wrap,
.section-inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 32px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	letter-spacing: 0;
	flex: 0 0 auto;
	padding: 10px 0;
}

.brand img {
	width: 214px;
	max-height: 62px;
	object-fit: contain;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(214, 224, 229, 0.92);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	border-radius: 999px;
	background: var(--ink);
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 8px;
	border: 1px solid rgba(214, 224, 229, 0.82);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: #263542;
	font-size: 15px;
	font-weight: 800;
	list-style: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 36px rgba(16, 24, 32, 0.05);
}

.main-nav li {
	margin: 0;
	padding: 0;
}

.main-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 999px;
	color: #22313d;
	transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.main-nav a::after {
	display: none;
}

.main-nav a:hover,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.main-nav .current-menu-item a {
	background: rgba(var(--brand-rgb), 0.09);
	color: var(--brand);
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown::after {
	position: absolute;
	top: 100%;
	right: -24px;
	left: -24px;
	height: 24px;
	content: "";
}

.nav-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.dropdown-caret {
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.18s ease;
}

.nav-dropdown:hover .dropdown-caret,
.nav-dropdown:focus-within .dropdown-caret {
	transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 30;
	display: grid;
	min-width: 390px;
	padding: 12px;
	border: 1px solid rgba(214, 224, 229, 0.92);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(20, 35, 48, 0.18);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown-menu::before {
	position: absolute;
	top: -7px;
	left: 50%;
	width: 14px;
	height: 14px;
	border-top: 1px solid rgba(214, 224, 229, 0.92);
	border-left: 1px solid rgba(214, 224, 229, 0.92);
	background: #fff;
	content: "";
	transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
	display: grid;
	min-height: auto;
	padding: 14px 16px;
	border-radius: 8px;
	color: var(--ink);
	font-size: 15px;
	white-space: nowrap;
}

.nav-dropdown-menu a::after {
	display: none;
}

.nav-dropdown-menu a:hover {
	background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-2-rgb), 0.08));
	color: var(--brand);
}

.nav-dropdown-menu strong {
	font-size: 15px;
	line-height: 1.2;
}

.nav-dropdown-menu span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.nav-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 8px;
	background: var(--brand);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 18px 44px rgba(var(--brand-rgb), 0.24);
}

.button.secondary {
	background: #fff;
	color: var(--ink);
	box-shadow: none;
}

.hero {
	position: relative;
	min-height: calc(100vh - 88px);
	display: grid;
	align-items: end;
	overflow: hidden;
	background: #111;
}

.hero::before {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(8, 18, 28, 0.9), rgba(8, 18, 28, 0.58) 46%, rgba(8, 18, 28, 0.16)), var(--hero-image);
	background-position: center;
	background-size: cover;
	content: "";
}

.hero .section-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
	align-items: end;
	gap: 48px;
	padding: 120px 0 54px;
	color: #fff;
}

.eyebrow {
	color: var(--gold);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 820px;
	margin: 12px 0 18px;
	font-size: clamp(42px, 7vw, 82px);
	line-height: 0.98;
	letter-spacing: 0;
}

.hero p {
	max-width: 650px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.split-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-panel {
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(18px);
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.metric strong {
	display: block;
	font-size: 30px;
	line-height: 1;
}

.metric span {
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
}

.band {
	padding: 90px 0;
}

.band.soft {
	background: var(--soft);
}

.section-kicker {
	margin-bottom: 10px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-title {
	max-width: 760px;
	margin: 0 0 18px;
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.04;
}

.section-copy {
	max-width: 700px;
	margin: 0 0 34px;
	color: var(--muted);
	font-size: 18px;
}

.service-grid,
.brand-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.service-card,
.brand-card,
.contact-strip {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(18, 30, 45, 0.06);
}

.service-card {
	padding: 28px;
}

.service-card span {
	display: inline-grid;
	width: 44px;
	height: 44px;
	margin-bottom: 22px;
	place-items: center;
	border-radius: 6px;
	background: rgba(var(--brand-rgb), 0.1);
	color: var(--brand);
	font-weight: 900;
}

.service-card h3,
.brand-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
}

.service-card p,
.brand-card p {
	margin: 0;
	color: var(--muted);
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: 54px;
}

.image-stack {
	position: relative;
	min-height: 560px;
}

.image-stack img {
	position: absolute;
	border-radius: 8px;
	box-shadow: var(--shadow);
	object-fit: cover;
}

.image-stack img:first-child {
	top: 0;
	left: 0;
	width: 78%;
	height: 410px;
}

.image-stack img:last-child {
	right: 0;
	bottom: 0;
	width: 58%;
	height: 320px;
	border: 8px solid #fff;
}

.brand-card {
	overflow: hidden;
}

.brand-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	background: #fff;
}

.brand-card div {
	padding: 22px;
}

.contact-strip {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 34px;
	background:
		radial-gradient(circle at 86% 18%, rgba(var(--brand-rgb), 0.44), transparent 32%),
		var(--ink);
	color: #fff;
}

.contact-strip p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.site-footer {
	padding: 42px 0;
	background: #0c1117;
	color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 28px;
}

.footer-grid h3,
.footer-grid h4 {
	margin: 0 0 10px;
	color: #fff;
}

.page-hero {
	padding: 86px 0;
	background: linear-gradient(135deg, #0f232f, #123e3a);
	color: #fff;
}

.page-hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(40px, 6vw, 66px);
	line-height: 1;
}

.page-content {
	padding: 72px 0;
}

.page-content .entry-content {
	max-width: 1060px;
}

.page-content .entry-content a {
	color: var(--brand);
	text-decoration: underline;
}

@media (max-width: 920px) {
	.nav-wrap {
		position: relative;
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		min-height: 76px;
		padding: 12px 0;
		gap: 14px;
	}

	.nav-toggle {
		display: block;
	}

	.main-nav {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		left: 0;
		z-index: 80;
		display: grid;
		width: 100%;
		max-height: calc(100vh - 110px);
		overflow-x: hidden;
		overflow-y: auto;
		padding: 12px;
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 28px 80px rgba(16, 24, 32, 0.18);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.18s ease, transform 0.18s ease;
		-webkit-overflow-scrolling: touch;
	}

	.nav-open .main-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.main-nav a {
		justify-content: space-between;
		width: 100%;
		max-width: 100%;
		min-height: 48px;
		padding: 0 14px;
		border-radius: 10px;
		white-space: normal;
	}

	.nav-dropdown {
		position: static;
		width: 100%;
	}

	.nav-dropdown::after {
		display: none;
	}

	.nav-dropdown-menu {
		position: static;
		display: grid;
		width: 100%;
		min-width: 0;
		max-width: 100%;
		margin: 4px 0 8px;
		padding: 8px;
		border: 0;
		border-radius: 12px;
		background: #f5f8fb;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.nav-dropdown-menu::before {
		display: none;
	}

	.nav-dropdown-menu a {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		padding: 12px 14px;
		background: #fff;
		white-space: normal;
	}

	.nav-dropdown-menu strong,
	.nav-dropdown-menu span {
		white-space: normal;
		overflow-wrap: anywhere;
	}

	.nav-cta {
		display: none;
	}

	.hero,
	.hero .section-inner {
		min-height: auto;
	}

	.hero .section-inner,
	.split,
	.contact-strip,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.service-grid,
	.brand-grid {
		grid-template-columns: 1fr;
	}

	.image-stack {
		min-height: auto;
	}

	.image-stack img,
	.image-stack img:first-child,
	.image-stack img:last-child {
		position: static;
		width: 100%;
		height: auto;
		margin-bottom: 16px;
	}
}

/* Spacing and form reliability polish */
.service-overview.band,
.service-detail-band.band,
.service-process-band.band,
.local-seo-band.band,
.page-cta-band.band,
.brand-partners-section.band,
.product-showcase-section.band,
.contact-main-section.band,
.about-intro.band,
.about-story.band,
.founder-message-section.band,
.journey-statement-section.band,
.about-roadmap-section.band,
.about-brands.band {
	padding-top: 62px;
	padding-bottom: 62px;
}

.service-overview.band {
	padding-top: 72px;
}

.service-detail-band.band {
	padding-top: 44px;
}

.local-seo-band.band,
.page-cta-band.band,
.contact-map-section.band {
	padding-top: 34px;
	padding-bottom: 54px;
}

.service-process-band .section-inner > .section-kicker {
	text-align: center;
}

.service-process-band .section-title {
	max-width: 760px;
	font-size: clamp(28px, 3.4vw, 42px);
	line-height: 1.08;
}

.service-process {
	margin-top: 28px;
}

.service-process div {
	min-height: 138px;
	padding: 22px;
}

.service-process span {
	margin-bottom: 26px;
}

.service-process strong {
	font-size: 16px;
	line-height: 1.25;
}

.local-seo-panel,
.contact-strip {
	gap: 28px;
	padding: 30px;
}

.local-seo-panel .section-title,
.contact-strip .section-title {
	max-width: 620px;
	font-size: clamp(26px, 3.2vw, 38px);
	line-height: 1.08;
}

.contact-strip {
	align-items: center;
}

.contact-alert {
	border: 1px solid transparent;
}

.cv-quote-card .contact-alert {
	margin: 0 0 14px;
	padding: 12px 14px;
	font-size: 13px;
}

.cv-quote-card .contact-alert.success {
	border-color: rgba(65, 198, 232, 0.28);
	background: rgba(65, 198, 232, 0.14);
	color: #dff7ff;
}

.cv-quote-card .contact-alert.error {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(215, 25, 32, 0.18);
	color: #ffe1e1;
}

.cv-quote-card input {
	overflow: hidden;
	text-overflow: ellipsis;
}

.cv-review-pill {
	letter-spacing: 0;
}

@media (max-width: 920px) {
	.service-overview.band,
	.service-detail-band.band,
	.service-process-band.band,
	.local-seo-band.band,
	.page-cta-band.band,
	.brand-partners-section.band,
	.product-showcase-section.band,
	.contact-main-section.band {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.service-process-band .section-title {
		text-align: center;
	}
}

@media (max-width: 640px) {
	.local-seo-panel,
	.contact-strip {
		padding: 22px;
	}
}

/* Lim and Kim Impex v2 */
body {
	background:
		linear-gradient(180deg, rgba(247, 250, 251, 0.9), rgba(255, 255, 255, 1) 420px),
		#fff;
}

.site-header {
	background: rgba(250, 252, 252, 0.9);
}

.brand img {
	width: 214px;
}

.nav-cta,
.button {
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nav-cta:hover,
.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(var(--brand-rgb), 0.26);
}

.premium-hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 88px);
	background: #071016;
	color: #fff;
}

.premium-hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(7, 16, 22, 0.94), rgba(7, 16, 22, 0.7) 46%, rgba(7, 16, 22, 0.22)),
		var(--hero-image);
	background-position: center;
	background-size: cover;
	content: "";
}

.premium-hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 34%;
	background: linear-gradient(180deg, rgba(7, 16, 22, 0), rgba(7, 16, 22, 0.95));
	content: "";
}

.premium-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
	align-items: center;
	gap: 68px;
	min-height: calc(100vh - 150px);
	padding: 88px 0 42px;
}

.hero-copy h1 {
	max-width: 900px;
	margin: 14px 0 22px;
	font-size: clamp(48px, 7.2vw, 92px);
	line-height: 0.94;
	letter-spacing: 0;
}

.hero-copy p {
	max-width: 660px;
	margin: 0 0 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(18px, 2vw, 22px);
}

.hero-showcase {
	position: relative;
	min-height: 560px;
}

.showcase-main {
	position: absolute;
	inset: 42px 0 auto auto;
	width: 86%;
	height: 430px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.showcase-card {
	position: absolute;
	bottom: 52px;
	left: 0;
	display: grid;
	grid-template-columns: 82px 1fr;
	align-items: center;
	gap: 16px;
	width: min(360px, 92%);
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(18px);
}

.showcase-card img {
	width: 82px;
	height: 82px;
	border-radius: 6px;
	object-fit: contain;
	background: #fff;
}

.showcase-card span {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
}

.trust-rail {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-bottom: 34px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.trust-rail span {
	padding: 18px 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.trust-rail span:last-child {
	border-right: 0;
}

.intro-grid {
	display: grid;
	grid-template-columns: 0.9fr 1fr;
	gap: 60px;
	align-items: end;
}

.premium-band {
	background: #fff;
}

.bento-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr;
	grid-auto-rows: 260px;
	gap: 18px;
	margin-top: 30px;
}

.bento-card {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: flex-end;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #f7fafb;
	color: var(--ink);
	box-shadow: 0 18px 50px rgba(20, 35, 48, 0.08);
}

.bento-card.large {
	grid-row: span 2;
	min-height: 538px;
	color: #fff;
}

.bento-card.deep {
	background: #101820;
	color: #fff;
}

.bento-card.image {
	color: #fff;
}

.bento-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bento-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.76));
	content: "";
	opacity: 0;
}

.bento-card.large::after,
.bento-card.image::after {
	opacity: 1;
}

.bento-card div {
	position: relative;
	z-index: 2;
}

.bento-card span {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 900;
}

.bento-card h3 {
	margin: 0 0 8px;
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1;
}

.bento-card p {
	max-width: 420px;
	margin: 0;
	color: inherit;
	opacity: 0.78;
}

.product-stage {
	background: #0d171f;
	color: #fff;
}

.product-stage .section-copy {
	color: rgba(255, 255, 255, 0.74);
}

.stage-grid {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: 58px;
	align-items: center;
}

.product-wall {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.product-wall img {
	width: 100%;
	height: 340px;
	border-radius: 8px;
	object-fit: contain;
	background: #fff;
	padding: 18px;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.product-wall img:nth-child(even) {
	margin-top: 42px;
}

.dealing-brands {
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.75), #fff),
		#fff;
}

.dealing-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.dealing-card {
	display: grid;
	min-height: 230px;
	align-content: center;
	justify-items: center;
	padding: 24px 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	text-align: center;
	box-shadow: 0 16px 42px rgba(20, 35, 48, 0.07);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dealing-card:hover {
	border-color: rgba(var(--brand-rgb), 0.34);
	transform: translateY(-5px);
	box-shadow: 0 24px 62px rgba(20, 35, 48, 0.13);
}

.dealing-card.category-card {
	background:
		linear-gradient(180deg, rgba(var(--brand-rgb), 0.04), rgba(var(--brand-2-rgb), 0.05)),
		#fff;
}

.dealing-card img {
	width: 112px;
	height: 112px;
	margin-bottom: 18px;
	border-radius: 8px;
	object-fit: contain;
	background: #f7fafb;
}

.dealing-card strong {
	display: block;
	color: var(--ink);
	font-size: 18px;
	line-height: 1.2;
}

.dealing-card span {
	margin-top: 6px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.timeline-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 32px;
}

.timeline-grid div {
	min-height: 250px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.06);
}

.timeline-grid strong {
	display: block;
	margin-bottom: 48px;
	color: var(--brand-2);
	font-size: 14px;
}

.timeline-grid h3 {
	margin: 0 0 10px;
	font-size: 22px;
}

.timeline-grid p {
	margin: 0;
	color: var(--muted);
}

.final-cta {
	background: #101820;
	color: #fff;
}

.final-cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
}

.final-cta h2 {
	max-width: 820px;
	margin: 0 0 10px;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1;
}

.final-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.modern-page-hero {
	position: relative;
	overflow: hidden;
	padding: 104px 0 92px;
	background:
		radial-gradient(circle at 74% 20%, rgba(var(--brand-rgb), 0.42), transparent 34%),
		linear-gradient(115deg, #071016 0%, #0b1520 52%, #121938 100%);
	color: #fff;
}

.modern-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
	gap: 72px;
	align-items: center;
}

.modern-page-hero h1 {
	max-width: 860px;
	margin: 12px 0 18px;
	font-size: clamp(48px, 6vw, 82px);
	line-height: 0.98;
}

.modern-page-hero p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 19px;
}

.page-visual {
	position: relative;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(14px);
}

.page-visual img {
	width: 100%;
	height: 440px;
	border-radius: 8px;
	object-fit: cover;
	filter: saturate(0.95) contrast(1.04);
}

.page-visual::after {
	position: absolute;
	inset: 10px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(7, 16, 22, 0.04), rgba(7, 16, 22, 0.54));
	content: "";
	pointer-events: none;
}

.page-points {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 2;
	display: grid;
	gap: 8px;
}

.page-points span {
	padding: 11px 13px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 6px;
	background: rgba(7, 16, 22, 0.72);
	color: #fff;
	backdrop-filter: blur(14px);
	font-size: 13px;
	font-weight: 900;
}

.premium-page-content {
	background: linear-gradient(180deg, #f4f7f8, #fff);
}

.content-panel {
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 56px rgba(20, 35, 48, 0.08);
}

.content-panel .entry-content {
	max-width: none;
}

.content-panel .elementor,
.content-panel [class*="wp-block-uagb"] {
	max-width: 100%;
}

.service-overview {
	background:
		linear-gradient(180deg, #fff, rgba(244, 247, 248, 0.74)),
		#fff;
}

.service-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
	gap: 54px;
	align-items: center;
}

.service-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 42px rgba(20, 35, 48, 0.07);
}

.service-keywords span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid rgba(var(--brand-rgb), 0.18);
	border-radius: 999px;
	background: rgba(var(--brand-rgb), 0.07);
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
}

.service-detail-band {
	background:
		linear-gradient(180deg, rgba(241, 245, 248, 0.98), rgba(255, 255, 255, 0.96)),
		#fff;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.66fr) minmax(0, 1fr);
	gap: 24px;
	align-items: stretch;
}

.service-image-panel {
	position: sticky;
	top: 118px;
	overflow: hidden;
	height: max-content;
	border-radius: 8px;
	background: #101820;
	box-shadow: var(--shadow);
}

.service-image-panel::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 16, 22, 0), rgba(7, 16, 22, 0.18));
	content: "";
	pointer-events: none;
}

.service-image-panel img {
	width: 100%;
	height: 610px;
	object-fit: cover;
	opacity: 0.9;
}

.service-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.service-feature-card {
	display: flex;
	min-height: 292px;
	flex-direction: column;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 54px rgba(20, 35, 48, 0.08);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-feature-card:hover {
	border-color: rgba(var(--brand-rgb), 0.22);
	transform: translateY(-4px);
	box-shadow: 0 26px 72px rgba(20, 35, 48, 0.13);
}

.service-feature-card > span {
	display: inline-grid;
	width: 44px;
	height: 44px;
	margin-bottom: 42px;
	place-items: center;
	border-radius: 8px;
	background: rgba(var(--brand-rgb), 0.1);
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
}

.service-feature-card h3 {
	margin: 0 0 12px;
	font-size: clamp(24px, 2.2vw, 32px);
	line-height: 1.08;
}

.service-feature-card p {
	margin: 0;
	color: var(--muted);
}

.service-feature-card a {
	margin-top: auto;
	padding-top: 24px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.service-process-band {
	background: #fff;
}

.service-process {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.service-process div {
	position: relative;
	min-height: 180px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		linear-gradient(180deg, #fff, #f9fbfc),
		#fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.07);
}

.service-process div::after {
	position: absolute;
	top: 44px;
	right: -9px;
	z-index: 2;
	width: 18px;
	height: 2px;
	background: var(--brand);
	content: "";
}

.service-process div:last-child::after {
	display: none;
}

.service-process span {
	display: block;
	margin-bottom: 40px;
	color: var(--brand-2);
	font-size: 13px;
	font-weight: 900;
}

.service-process strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
}

.local-seo-band {
	padding-top: 0;
	background: #fff;
}

.local-seo-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
	gap: 34px;
	align-items: center;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		linear-gradient(115deg, rgba(var(--brand-rgb), 0.1), rgba(var(--brand-2-rgb), 0.08)),
		#fff;
	box-shadow: 0 18px 54px rgba(20, 35, 48, 0.08);
}

.local-seo-panel .section-title {
	margin-bottom: 0;
	font-size: clamp(28px, 4vw, 44px);
}

.local-seo-panel p {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}

.contact-hero {
	overflow: hidden;
	padding: 92px 0 82px;
	background:
		linear-gradient(110deg, rgba(7, 16, 22, 0.96), rgba(19, 32, 56, 0.82) 52%, rgba(var(--brand-rgb), 0.36)),
		url("http://localhost/lim_kim/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
	color: #fff;
}

.contact-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
	gap: 64px;
	align-items: center;
}

.contact-hero h1 {
	max-width: 820px;
	margin: 12px 0 18px;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 0.98;
}

.contact-hero p {
	max-width: 650px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
}

.contact-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.contact-hero-panel {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(16px);
}

.contact-hero-panel img {
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.contact-hero-points {
	display: grid;
	gap: 8px;
	padding: 16px;
}

.contact-hero-points span {
	padding: 12px 14px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-weight: 900;
}

.contact-main-section {
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.96), rgba(255, 255, 255, 1)),
		#fff;
}

.contact-main-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.contact-info-panel,
.modern-contact-form-card,
.contact-map-panel {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 54px rgba(20, 35, 48, 0.08);
}

.contact-info-panel {
	position: sticky;
	top: 118px;
	padding: 34px;
}

.contact-info-panel h2 {
	margin: 0 0 14px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1;
}

.contact-info-panel p {
	margin: 0 0 28px;
	color: var(--muted);
}

.contact-info-list {
	display: grid;
	gap: 12px;
}

.contact-info-list a,
.contact-info-list div {
	display: grid;
	gap: 6px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #f8fafb;
}

.contact-info-list span {
	color: var(--brand);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.contact-info-list strong {
	color: var(--ink);
	font-size: 15px;
	line-height: 1.45;
}

.modern-contact-form-card {
	padding: 38px;
}

.contact-form-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
	gap: 24px;
	align-items: end;
	margin-bottom: 28px;
}

.contact-form-heading h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1;
}

.contact-form-heading > span {
	color: var(--muted);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
}

.contact-alert {
	margin-bottom: 22px;
	padding: 14px 16px;
	border-radius: 8px;
	font-weight: 800;
}

.contact-alert.success {
	background: rgba(var(--brand-2-rgb), 0.13);
	color: var(--brand);
}

.contact-alert.error {
	background: rgba(215, 25, 32, 0.1);
	color: #a8141a;
}

.modern-contact-form {
	display: grid;
	gap: 16px;
}

.modern-contact-form label {
	display: grid;
	gap: 8px;
}

.modern-contact-form span {
	color: #334454;
	font-size: 13px;
	font-weight: 900;
}

.form-row.two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.modern-contact-form input,
.modern-contact-form textarea {
	width: 100%;
	border: 1px solid #d7e0e6;
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.modern-contact-form input {
	min-height: 54px;
	padding: 0 16px;
}

.modern-contact-form textarea {
	resize: vertical;
	padding: 16px;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
	border-color: rgba(var(--brand-rgb), 0.56);
	box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.08);
}

.modern-contact-form button {
	width: fit-content;
	border: 0;
	cursor: pointer;
}

.contact-honeypot {
	position: absolute;
	left: -9999px;
}

.contact-map-section {
	padding-top: 0;
	background: #fff;
}

.contact-map-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: 40px;
	background:
		linear-gradient(90deg, rgba(7, 16, 22, 0.94), rgba(7, 16, 22, 0.72)),
		url("http://localhost/lim_kim/wp-content/uploads/2023/08/contact-bg.jpg") center/cover;
	color: #fff;
}

.contact-map-panel h2 {
	max-width: 780px;
	margin: 0 0 12px;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1;
}

.contact-map-panel p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.brand-products-hero {
	overflow: hidden;
	padding: 92px 0 82px;
	background:
		linear-gradient(110deg, rgba(7, 16, 22, 0.96), rgba(23, 27, 65, 0.82) 50%, rgba(var(--brand-rgb), 0.38)),
		url("http://localhost/lim_kim/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
	color: #fff;
}

.brand-products-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
	gap: 62px;
	align-items: center;
}

.brand-products-hero h1 {
	max-width: 860px;
	margin: 12px 0 18px;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 0.98;
}

.brand-products-hero p {
	max-width: 650px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
}

.brand-products-hero-wall {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: 190px 190px;
	gap: 14px;
}

.brand-products-hero-wall img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
	background: #fff;
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.brand-products-hero-wall img:first-child {
	grid-row: span 2;
}

.brand-products-hero-wall img:last-child {
	object-fit: contain;
	padding: 22px;
}

.brand-partners-section {
	background: #fff;
}

.partner-brand-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.partner-brand-card {
	display: grid;
	min-height: 250px;
	align-content: center;
	justify-items: center;
	padding: 24px 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	text-align: center;
	box-shadow: 0 16px 42px rgba(20, 35, 48, 0.07);
}

.partner-brand-card img {
	width: 118px;
	height: 118px;
	margin-bottom: 18px;
	border-radius: 8px;
	object-fit: contain;
	background: #f7fafb;
}

.partner-brand-card h3 {
	margin: 0 0 6px;
	font-size: 20px;
	line-height: 1.1;
}

.partner-brand-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.product-showcase-section {
	background: #fff;
}

.product-showcase-section.soft {
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.92), rgba(255, 255, 255, 1)),
		#fff;
}

.product-showcase-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.52fr);
	gap: 40px;
	align-items: end;
	margin-bottom: 34px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.product-grid.compact {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
	display: grid;
	min-height: 260px;
	align-content: space-between;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
	border-color: rgba(var(--brand-rgb), 0.24);
	transform: translateY(-4px);
	box-shadow: 0 24px 62px rgba(20, 35, 48, 0.12);
}

.product-card img {
	width: 100%;
	height: 180px;
	object-fit: contain;
}

.product-card h3 {
	margin: 16px 0 0;
	color: var(--ink);
	font-size: 15px;
	line-height: 1.25;
	text-align: center;
}

.page-cta-band {
	padding-top: 0;
}

.about-hero {
	overflow: hidden;
	padding: 96px 0 78px;
	background:
		linear-gradient(110deg, rgba(7, 16, 22, 0.96), rgba(7, 16, 22, 0.82) 46%, rgba(7, 16, 22, 0.38)),
		url("http://localhost/lim_kim/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
	color: #fff;
}

.about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
	gap: 62px;
	align-items: center;
}

.about-hero h1 {
	max-width: 820px;
	margin: 12px 0 18px;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 0.98;
}

.about-hero p {
	max-width: 660px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 19px;
}

.about-hero-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(16px);
}

.about-hero-card img {
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.about-hero-card div {
	padding: 22px;
}

.about-hero-card strong {
	display: block;
	font-size: 28px;
	line-height: 1;
}

.about-hero-card span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.76);
}

.about-intro-grid,
.story-grid {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 58px;
	align-items: start;
}

.about-copy {
	display: grid;
	gap: 18px;
	color: var(--muted);
	font-size: 18px;
}

.about-copy p {
	margin: 0;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.value-grid article {
	min-height: 260px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(20, 35, 48, 0.07);
}

.value-grid span {
	display: inline-grid;
	width: 46px;
	height: 46px;
	margin-bottom: 36px;
	place-items: center;
	border-radius: 6px;
	background: rgba(var(--brand-rgb), 0.1);
	color: var(--brand);
	font-weight: 900;
}

.value-grid h3 {
	margin: 0 0 10px;
	font-size: 24px;
}

.value-grid p {
	margin: 0;
	color: var(--muted);
}

.story-image img {
	width: 100%;
	height: 560px;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.check-list {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 14px 16px 14px 46px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	font-weight: 800;
}

.check-list li::before {
	position: absolute;
	top: 14px;
	left: 16px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	content: "";
	font-size: 13px;
	font-weight: 900;
	line-height: 20px;
	text-align: center;
}

.check-list li::after {
	position: absolute;
	top: 20px;
	left: 22px;
	width: 8px;
	height: 5px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	content: "";
	transform: rotate(-45deg);
}

.founder-message-section {
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.95), rgba(255, 255, 255, 0.98)),
		#fff;
}

.founder-message-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.founder-profile-card {
	position: sticky;
	top: 118px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #101820;
	color: #fff;
	box-shadow: var(--shadow);
}

.founder-profile-card img {
	width: 100%;
	height: 430px;
	object-fit: cover;
}

.founder-profile-card div {
	padding: 26px;
}

.founder-profile-card span {
	display: block;
	margin-bottom: 18px;
	color: var(--gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.founder-profile-card strong {
	display: block;
	font-size: 28px;
	line-height: 1;
}

.founder-profile-card small {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 800;
}

.founder-letter-card {
	position: relative;
	padding: 42px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 54px rgba(20, 35, 48, 0.08);
}

.founder-letter-card::before {
	position: absolute;
	top: 30px;
	right: 34px;
	color: rgba(var(--brand-rgb), 0.1);
	content: '"';
	font-family: Georgia, serif;
	font-size: 120px;
	line-height: 0.8;
}

.founder-letter {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 18px;
	color: #354452;
	font-size: 18px;
	line-height: 1.82;
}

.founder-letter p {
	margin: 0;
}

.founder-signoff {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.founder-signoff span {
	color: var(--muted);
	font-weight: 800;
}

.founder-signoff strong {
	color: var(--brand);
	font-size: 18px;
	font-weight: 900;
}

.journey-statement-section {
	background: #fff;
}

.journey-statement {
	display: grid;
	justify-items: center;
	text-align: center;
}

.journey-statement .section-title {
	max-width: 940px;
}

.journey-statement p {
	max-width: 1040px;
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.72;
}

.journey-proof-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
	margin-top: 34px;
	text-align: left;
}

.journey-proof-grid div {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.06);
}

.journey-proof-grid strong {
	display: block;
	margin-bottom: 8px;
	color: var(--brand);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1;
}

.journey-proof-grid span {
	color: var(--muted);
	font-weight: 800;
}

.about-roadmap-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(244, 247, 248, 0.96), rgba(255, 255, 255, 0.98)),
		#fff;
}

.about-roadmap-section .section-copy {
	margin-bottom: 0;
}

.roadmap-list {
	position: relative;
	display: grid;
	gap: 26px;
	margin-top: 42px;
}

.roadmap-list::before {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 50%;
	width: 2px;
	background: linear-gradient(180deg, var(--brand), rgba(var(--brand-rgb), 0.12));
	content: "";
	transform: translateX(-50%);
}

.roadmap-item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
}

.roadmap-item:nth-child(odd) .roadmap-card {
	grid-column: 1;
}

.roadmap-item:nth-child(odd) .roadmap-marker {
	grid-column: 2;
}

.roadmap-item:nth-child(even) .roadmap-marker {
	grid-column: 2;
}

.roadmap-item:nth-child(even) .roadmap-card {
	grid-column: 3;
}

.roadmap-marker {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	gap: 10px;
	padding-top: 10px;
	text-align: center;
}

.roadmap-marker span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 2px solid rgba(var(--brand-rgb), 0.18);
	border-radius: 50%;
	background: #fff;
	color: var(--brand);
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 12px 30px rgba(20, 35, 48, 0.12);
}

.roadmap-marker time {
	display: inline-flex;
	justify-content: center;
	min-width: 86px;
	padding: 8px 10px;
	border-radius: 999px;
	background: #101820;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.1;
}

.roadmap-card {
	position: relative;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(20, 35, 48, 0.08);
}

.roadmap-card::before {
	position: absolute;
	top: 32px;
	width: 18px;
	height: 18px;
	border-top: 1px solid var(--line);
	border-right: 1px solid var(--line);
	background: #fff;
	content: "";
}

.roadmap-item:nth-child(odd) .roadmap-card::before {
	right: -10px;
	transform: rotate(45deg);
}

.roadmap-item:nth-child(even) .roadmap-card::before {
	left: -10px;
	transform: rotate(225deg);
}

.roadmap-card h3 {
	margin: 0 0 16px;
	font-size: clamp(22px, 2.5vw, 30px);
	line-height: 1.12;
}

.roadmap-card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.roadmap-card li {
	position: relative;
	padding-left: 22px;
	color: var(--muted);
}

.roadmap-card li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand);
	content: "";
	transform: translateY(-50%);
}

.about-timeline {
	display: grid;
	gap: 16px;
	margin-top: 34px;
}

.timeline-item {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 20px;
	align-items: stretch;
}

.timeline-item time {
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: #101820;
	color: #fff;
	font-size: 26px;
	font-weight: 900;
}

.timeline-item div {
	padding: 24px 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(20, 35, 48, 0.06);
}

.timeline-item h3 {
	margin: 0 0 8px;
	font-size: 23px;
}

.timeline-item p {
	margin: 0;
	color: var(--muted);
}

.about-brands {
	background: #fff;
}

@media (max-width: 1040px) {
	.premium-hero-grid,
	.modern-page-grid,
	.stage-grid,
	.intro-grid,
	.final-cta-inner,
	.about-hero-grid,
	.about-intro-grid,
	.story-grid,
	.contact-hero-grid,
	.contact-main-grid,
	.contact-form-heading,
	.contact-map-panel,
	.brand-products-hero-grid,
	.product-showcase-heading,
	.founder-message-grid,
	.service-overview-grid,
	.service-detail-grid,
	.local-seo-panel {
		grid-template-columns: 1fr;
	}

	.contact-info-panel {
		position: relative;
		top: auto;
	}

	.founder-profile-card {
		position: relative;
		top: auto;
		display: grid;
		grid-template-columns: 220px 1fr;
		align-items: stretch;
	}

	.founder-profile-card img {
		height: 100%;
		min-height: 250px;
	}

	.service-keywords {
		justify-content: flex-start;
	}

	.service-image-panel {
		position: relative;
		top: auto;
	}

	.service-image-panel img {
		height: 360px;
	}

	.hero-showcase {
		min-height: 440px;
	}

	.bento-grid {
		grid-template-columns: 1fr 1fr;
	}

	.product-wall,
	.dealing-grid,
	.partner-brand-grid,
	.product-grid,
	.product-grid.compact,
	.timeline-grid,
	.value-grid,
	.journey-proof-grid,
	.service-card-grid,
	.service-process,
	.form-row.two {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.nav-wrap,
	.section-inner {
		width: min(100% - 28px, 1180px);
	}

	.band {
		padding: 58px 0;
	}

	.section-title,
	.contact-info-panel h2,
	.contact-form-heading h2,
	.contact-map-panel h2 {
		font-size: clamp(28px, 10vw, 42px);
		line-height: 1.05;
	}

	.section-copy,
	.contact-hero p,
	.brand-products-hero p,
	.about-hero p,
	.modern-page-hero p,
	.hero-copy p {
		font-size: 16px;
	}

	.nav-wrap {
		align-items: center;
	}

	.brand img {
		width: 172px;
	}

	.main-nav {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.main-nav a {
		min-height: 44px;
		justify-content: space-between;
		padding: 0 12px;
		font-size: 13px;
		text-align: left;
		white-space: normal;
	}

	.nav-dropdown {
		width: 100%;
	}

	.nav-dropdown-toggle {
		justify-content: space-between;
	}

	.nav-dropdown-menu {
		width: 100%;
	}

	.premium-hero-grid {
		min-height: auto;
		padding-top: 58px;
		gap: 26px;
	}

	.hero-copy h1,
	.modern-page-hero h1,
	.about-hero h1,
	.contact-hero h1,
	.brand-products-hero h1 {
		font-size: clamp(38px, 13vw, 56px);
		line-height: 1;
	}

	.hero-showcase {
		min-height: auto;
	}

	.showcase-main,
	.showcase-card {
		position: static;
		width: 100%;
		margin-top: 16px;
	}

	.showcase-main {
		height: 260px;
	}

	.trust-rail,
	.bento-grid,
	.product-wall,
	.dealing-grid,
	.partner-brand-grid,
	.product-grid,
	.product-grid.compact,
	.timeline-grid,
	.value-grid,
	.journey-proof-grid,
	.service-card-grid,
	.service-process,
	.form-row.two {
		grid-template-columns: 1fr;
	}

	.contact-hero {
		padding: 58px 0;
	}

	.contact-hero-panel img {
		height: 260px;
	}

	.brand-products-hero {
		padding: 58px 0;
	}

	.brand-products-hero-wall {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.brand-products-hero-wall img,
	.brand-products-hero-wall img:first-child {
		grid-row: auto;
		height: 240px;
	}

	.modern-contact-form-card,
	.contact-info-panel,
	.contact-map-panel,
	.local-seo-panel,
	.founder-letter-card {
		padding: 24px;
	}

	.founder-profile-card {
		grid-template-columns: 1fr;
	}

	.founder-profile-card img {
		height: 300px;
	}

	.founder-letter {
		font-size: 16px;
		line-height: 1.72;
	}

	.service-feature-card {
		min-height: auto;
	}

	.service-process div {
		min-height: 150px;
	}

	.service-process div::after {
		display: none;
	}

	.about-hero {
		padding: 58px 0;
	}

	.about-hero-card img,
	.story-image img {
		height: 280px;
	}

	.timeline-item {
		grid-template-columns: 1fr;
	}

	.roadmap-list::before {
		left: 21px;
	}

	.roadmap-item,
	.roadmap-item:nth-child(odd),
	.roadmap-item:nth-child(even) {
		grid-template-columns: 86px minmax(0, 1fr);
		gap: 14px;
	}

	.roadmap-item:nth-child(odd) .roadmap-marker,
	.roadmap-item:nth-child(even) .roadmap-marker {
		grid-column: 1;
	}

	.roadmap-item:nth-child(odd) .roadmap-card,
	.roadmap-item:nth-child(even) .roadmap-card {
		grid-column: 2;
	}

	.roadmap-marker {
		gap: 8px;
		padding-top: 2px;
	}

	.roadmap-marker span {
		width: 42px;
		height: 42px;
	}

	.roadmap-marker time {
		position: static;
		min-width: 78px;
		padding: 7px 8px;
		font-size: 11px;
		transform: none;
	}

	.roadmap-card {
		padding: 22px;
	}

	.roadmap-card::before {
		top: 18px;
		left: -9px !important;
		right: auto !important;
		transform: rotate(225deg) !important;
	}

	.timeline-item time {
		min-height: 74px;
	}

	.product-wall img,
	.product-wall img:nth-child(even) {
		height: 260px;
		margin-top: 0;
	}

	.product-card {
		min-height: auto;
	}

	.product-card img {
		height: 170px;
	}

	.bento-card.large {
		min-height: 320px;
	}

	.bento-card {
		min-height: 240px;
		padding: 22px;
	}

	.bento-card h3 {
		font-size: clamp(26px, 9vw, 38px);
	}

	.content-panel {
		padding: 20px;
	}
}

@media (max-width: 560px) {
	.nav-wrap,
	.section-inner {
		width: min(100% - 24px, 1180px);
	}

	.hero-actions,
	.contact-hero-actions,
	.split-actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.button,
	.nav-cta {
		width: 100%;
		min-height: 50px;
		padding: 0 16px;
		text-align: center;
	}

	.nav-wrap .brand,
	.nav-wrap .brand img {
		max-width: 100%;
	}

	.trust-rail span {
		padding: 14px 12px;
		font-size: 12px;
	}

	.showcase-card {
		grid-template-columns: 64px 1fr;
		padding: 14px;
	}

	.showcase-card img {
		width: 64px;
		height: 64px;
	}

	.page-visual img,
	.contact-hero-panel img,
	.about-hero-card img,
	.story-image img,
	.service-image-panel img {
		height: 240px;
	}

	.brand-products-hero-wall img,
	.brand-products-hero-wall img:first-child {
		height: 220px;
	}

	.contact-strip,
	.final-cta-inner,
	.contact-map-panel {
		padding: 24px;
	}

	.contact-strip .button,
	.final-cta-inner .button,
	.contact-map-panel .button {
		width: 100%;
	}

	.partner-brand-card,
	.dealing-card {
		min-height: 210px;
	}

	.partner-brand-card img,
	.dealing-card img {
		width: 96px;
		height: 96px;
	}

	.roadmap-list::before {
		left: 18px;
	}

	.roadmap-item,
	.roadmap-item:nth-child(odd),
	.roadmap-item:nth-child(even) {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 12px;
	}

	.roadmap-marker span {
		width: 38px;
		height: 38px;
	}

	.roadmap-marker time {
		min-width: 0;
		width: 38px;
		padding: 6px 4px;
		border-radius: 8px;
		font-size: 10px;
		writing-mode: vertical-rl;
	}

	.roadmap-card {
		padding: 18px;
	}

	.roadmap-card h3 {
		font-size: 22px;
	}
}

@media (max-width: 420px) {
	.nav-wrap,
	.section-inner {
		width: min(100% - 20px, 1180px);
	}

	.main-nav {
		grid-template-columns: 1fr;
		padding: 10px;
	}

	.main-nav a {
		min-height: 38px;
		padding: 0 12px;
		font-size: 12px;
	}

	.hero-copy h1,
	.modern-page-hero h1,
	.about-hero h1,
	.contact-hero h1,
	.brand-products-hero h1 {
		font-size: clamp(34px, 12vw, 46px);
	}

	.section-title,
	.contact-info-panel h2,
	.contact-form-heading h2,
	.contact-map-panel h2 {
		font-size: clamp(26px, 9vw, 36px);
	}

	.service-card,
	.value-grid article,
	.service-feature-card,
	.product-card,
	.partner-brand-card,
	.dealing-card,
	.timeline-grid div,
	.service-process div {
		padding: 20px;
	}

	.modern-contact-form-card,
	.contact-info-panel,
	.contact-map-panel,
	.local-seo-panel,
	.founder-letter-card,
	.contact-strip {
		padding: 20px;
	}

	.product-card img {
		height: 150px;
	}

	.product-wall img,
	.product-wall img:nth-child(even) {
		height: 230px;
	}
}

/* Lim and Kim dark theme */
:root {
	--ink: #f4f8fb;
	--muted: #aab8c5;
	--line: rgba(147, 174, 196, 0.2);
	--paper: #071017;
	--soft: #0d1822;
	--brand: #0b74b8;
	--brand-rgb: 11, 116, 184;
	--brand-2: #41c6e8;
	--brand-2-rgb: 65, 198, 232;
	--accent-red: #e1444a;
	--gold: #f2c45f;
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

body {
	background:
		radial-gradient(circle at 16% 0, rgba(var(--brand-rgb), 0.22), transparent 28%),
		linear-gradient(180deg, #071017 0, #09131c 460px, #071017 100%);
	color: var(--ink);
}

.site-header {
	background: rgba(7, 16, 23, 0.88);
	border-bottom-color: rgba(110, 151, 184, 0.22);
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.brand img {
	width: 330px;
	max-height: 58px;
	padding: 5px 8px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.main-nav {
	border-color: rgba(121, 160, 189, 0.24);
	background: rgba(12, 29, 41, 0.76);
	color: #dceaf3;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 36px rgba(0, 0, 0, 0.18);
}

.main-nav a {
	color: #dceaf3;
}

.main-nav a:hover,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.main-nav .current-menu-item a {
	background: rgba(var(--brand-2-rgb), 0.13);
	color: #fff;
}

.nav-dropdown-menu,
.nav-dropdown-menu::before {
	border-color: rgba(121, 160, 189, 0.24);
	background: #0d1b27;
}

.nav-dropdown-menu a {
	color: var(--ink);
}

.nav-dropdown-menu a:hover {
	background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.2), rgba(var(--brand-2-rgb), 0.12));
	color: #fff;
}

.nav-dropdown-menu span {
	color: var(--muted);
}

.nav-toggle {
	border-color: rgba(121, 160, 189, 0.3);
	background: #0d1b27;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.nav-toggle span {
	background: #fff;
}

.nav-cta,
.button {
	background: linear-gradient(135deg, var(--brand), #0f92d0);
	color: #fff;
	box-shadow: 0 18px 44px rgba(var(--brand-rgb), 0.32);
}

.button.secondary {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
}

.band,
.premium-band,
.dealing-brands,
.product-showcase-section,
.brand-partners-section,
.about-brands,
.journey-statement-section {
	background: transparent;
}

.band.soft,
.founder-message-section,
.about-roadmap-section,
.product-showcase-section.soft {
	background:
		linear-gradient(180deg, rgba(13, 24, 34, 0.94), rgba(7, 16, 23, 0.98)),
		#071017;
}

.premium-hero,
.hero,
.product-stage,
.final-cta,
.page-hero,
.modern-page-hero,
.about-hero,
.contact-hero,
.brand-products-hero {
	background-color: #061019;
}

.premium-hero::before,
.hero::before {
	background-image:
		linear-gradient(90deg, rgba(4, 10, 15, 0.95), rgba(4, 10, 15, 0.76) 48%, rgba(4, 10, 15, 0.42)),
		var(--hero-image);
}

.service-card,
.brand-card,
.contact-strip,
.hero-panel,
.bento-card,
.dealing-card,
.timeline-grid div,
.content-panel,
.service-feature-card,
.service-process div,
.modern-contact-form-card,
.contact-info-panel,
.contact-map-panel,
.local-seo-panel,
.partner-brand-card,
.product-card,
.value-grid article,
.founder-letter-card,
.journey-proof-grid div,
.roadmap-card,
.timeline-item div,
.about-hero-card,
.founder-profile-card {
	border-color: var(--line);
	background: rgba(13, 27, 39, 0.9);
	color: var(--ink);
	box-shadow: var(--shadow);
}

.service-card p,
.brand-card p,
.section-copy,
.bento-card p,
.timeline-grid p,
.content-panel p,
.product-card h3,
.partner-brand-card p,
.dealing-card span,
.value-grid p,
.about-copy,
.journey-statement p,
.journey-proof-grid span,
.roadmap-card li,
.timeline-item p,
.contact-info-panel p,
.contact-map-panel p,
.local-seo-panel p,
.footer-grid p {
	color: var(--muted);
}

.bento-card.deep,
.final-cta,
.contact-strip,
.founder-profile-card {
	background: linear-gradient(135deg, #0a1520, #102537);
}

.dealing-card.category-card,
.service-card span,
.value-grid span,
.check-list li,
.timeline-item time,
.roadmap-marker time {
	background: rgba(var(--brand-2-rgb), 0.12);
	color: #fff;
}

.brand-card img,
.showcase-card img,
.product-wall img,
.dealing-card img,
.partner-brand-card img,
.product-card img {
	background: #fff;
}

.section-kicker,
.eyebrow,
.bento-card span,
.timeline-grid strong,
.roadmap-marker span,
.founder-signoff strong {
	color: var(--brand-2);
}

.section-title,
.hero-copy h1,
.modern-page-hero h1,
.about-hero h1,
.contact-hero h1,
.brand-products-hero h1,
.final-cta h2,
.content-panel h2,
.content-panel h3,
.service-card h3,
.brand-card h3,
.value-grid h3,
.roadmap-card h3,
.timeline-item h3,
.partner-brand-card h3,
.dealing-card strong,
.footer-grid h3,
.footer-grid h4 {
	color: #fff;
}

.page-content .entry-content a,
.content-panel a,
.site-footer a {
	color: var(--brand-2);
}

input,
textarea,
select {
	border-color: rgba(121, 160, 189, 0.28);
	background: #0a1520;
	color: #fff;
}

input::placeholder,
textarea::placeholder {
	color: #8495a5;
}

.site-footer {
	background: #050b10;
	border-top: 1px solid rgba(121, 160, 189, 0.18);
}

.footer-logo {
	display: inline-flex;
	margin-bottom: 18px;
}

.footer-logo img {
	width: min(360px, 100%);
	padding: 6px 8px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: #fff;
}

@media (max-width: 1040px) {
	.brand img {
		width: 280px;
	}
}

@media (max-width: 920px) {
	.main-nav {
		background: rgba(9, 21, 31, 0.98);
	}

	.nav-dropdown-menu {
		background: rgba(255, 255, 255, 0.04);
	}

	.nav-dropdown-menu a {
		background: rgba(255, 255, 255, 0.06);
	}
}

@media (max-width: 700px) {
	.brand img {
		width: 64px;
		height: 64px;
		max-height: none;
	}
}

@media (max-width: 420px) {
	.brand img {
		width: 58px;
		height: 58px;
	}
}

/* Registry-led homepage */
.registry-hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 88px);
	padding: 96px 0 30px;
	background:
		linear-gradient(115deg, rgba(3, 11, 17, 0.94), rgba(5, 18, 28, 0.84) 52%, rgba(var(--brand-rgb), 0.34)),
		url("http://localhost/lim_kim/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
	color: #fff;
}

.registry-hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 36%;
	background: linear-gradient(180deg, rgba(7, 16, 23, 0), #071017);
	content: "";
}

.registry-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
	align-items: center;
	gap: 62px;
}

.registry-copy h1 {
	max-width: 920px;
	margin: 14px 0 22px;
	font-size: clamp(46px, 7vw, 86px);
	line-height: 0.96;
}

.registry-copy p {
	max-width: 680px;
	margin: 0 0 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(18px, 2vw, 22px);
}

.registry-console,
.identity-card,
.identity-stack article,
.director-list article,
.compliance-panel,
.compliance-timeline,
.office-card {
	border: 1px solid rgba(129, 176, 210, 0.24);
	background: rgba(8, 22, 34, 0.82);
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(18px);
}

.registry-console {
	position: relative;
	padding: 22px;
	border-radius: 8px;
}

.registry-console::before {
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(var(--brand-2-rgb), 0.16);
	border-radius: 6px;
	content: "";
	pointer-events: none;
}

.console-topline {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.console-topline strong {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.14);
	color: #75f0a1;
	letter-spacing: 0.08em;
}

.console-logo {
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: 92px;
	margin-bottom: 18px;
	border-radius: 8px;
	object-fit: contain;
	background: #fff;
}

.trade-strip {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 6px;
	padding: 18px;
	border: 1px solid rgba(var(--brand-2-rgb), 0.22);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.18), rgba(var(--brand-2-rgb), 0.08));
}

.trade-strip span,
.console-fact-grid span,
.registry-fact-wall span,
.director-list span {
	color: var(--brand-2);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.trade-strip strong {
	color: #fff;
	font-size: clamp(18px, 3vw, 28px);
	line-height: 1.08;
}

.console-fact-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 12px;
}

.console-fact-grid div {
	min-height: 96px;
	padding: 16px;
	border: 1px solid rgba(129, 176, 210, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.console-fact-grid strong {
	display: block;
	margin-top: 12px;
	color: #fff;
	font-size: 20px;
	line-height: 1.12;
}

.registry-marquee {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-top: 60px;
}

.registry-marquee span {
	display: grid;
	min-height: 58px;
	place-items: center;
	border: 1px solid rgba(129, 176, 210, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.split-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
	gap: 42px;
	align-items: end;
	margin-bottom: 32px;
}

.registry-fact-wall {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.registry-fact-wall article {
	min-height: 170px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(13, 27, 39, 0.9);
	box-shadow: var(--shadow);
}

.registry-fact-wall strong {
	display: block;
	margin-top: 44px;
	color: #fff;
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1;
}

.identity-grid,
.directors-grid,
.compliance-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 22px;
	align-items: stretch;
}

.identity-card,
.identity-stack article,
.compliance-panel,
.office-card {
	border-radius: 8px;
}

.identity-card {
	display: grid;
	align-content: end;
	min-height: 520px;
	padding: 34px;
	background:
		linear-gradient(180deg, rgba(9, 24, 37, 0.38), rgba(9, 24, 37, 0.94)),
		url("http://localhost/lim_kim/wp-content/uploads/2024/02/topic_trade-analysis.jpg") center/cover;
}

.identity-card h2 {
	max-width: 580px;
	margin: 10px 0 16px;
	color: #fff;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
}

.identity-card p {
	max-width: 640px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
}

.identity-code {
	width: max-content;
	margin-top: 28px;
	padding: 12px 16px;
	border: 1px solid rgba(var(--brand-2-rgb), 0.32);
	border-radius: 8px;
	background: rgba(var(--brand-2-rgb), 0.12);
	color: #fff;
	font-weight: 900;
}

.identity-stack {
	display: grid;
	gap: 14px;
}

.identity-stack article {
	display: grid;
	align-content: center;
	min-height: 164px;
	padding: 26px;
}

.identity-stack h3 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 25px;
}

.identity-stack p,
.compliance-panel p,
.office-card p {
	margin: 0;
	color: var(--muted);
}

.director-list {
	display: grid;
	gap: 14px;
}

.director-list article {
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 18px;
	min-height: 132px;
	padding: 24px;
	border-radius: 8px;
}

.director-list span {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 50%;
	background: rgba(var(--brand-2-rgb), 0.12);
}

.director-list strong {
	display: block;
	color: #fff;
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1;
}

.director-list small {
	display: block;
	margin-top: 10px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.compliance-panel {
	padding: 34px;
}

.compliance-panel h2 {
	margin: 10px 0 16px;
	color: #fff;
	font-size: clamp(32px, 5vw, 54px);
	line-height: 1;
}

.compliance-timeline {
	display: grid;
	padding: 18px;
	border-radius: 8px;
}

.compliance-timeline div {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 18px;
	align-items: center;
	min-height: 86px;
	border-bottom: 1px solid rgba(129, 176, 210, 0.16);
}

.compliance-timeline div:last-child {
	border-bottom: 0;
}

.compliance-timeline time {
	color: var(--brand-2);
	font-size: 26px;
	font-weight: 900;
}

.compliance-timeline span {
	color: #fff;
	font-weight: 800;
}

.office-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: 36px;
	background:
		linear-gradient(135deg, rgba(var(--brand-rgb), 0.2), rgba(13, 27, 39, 0.96)),
		#0d1b27;
}

.office-card h2 {
	max-width: 840px;
	margin: 10px 0 14px;
	color: #fff;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.05;
}

.office-actions {
	display: grid;
	gap: 12px;
	min-width: 230px;
}

@media (max-width: 1040px) {
	.registry-hero-grid,
	.split-heading,
	.identity-grid,
	.directors-grid,
	.compliance-grid,
	.office-card {
		grid-template-columns: 1fr;
	}

	.registry-marquee,
	.registry-fact-wall {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.registry-hero {
		min-height: auto;
		padding: 58px 0 24px;
	}

	.registry-hero-grid {
		gap: 28px;
	}

	.registry-copy h1 {
		font-size: clamp(38px, 13vw, 58px);
	}

	.registry-console {
		padding: 16px;
	}

	.console-logo {
		max-height: 72px;
	}

	.registry-marquee,
	.registry-fact-wall,
	.console-fact-grid {
		grid-template-columns: 1fr;
	}

	.identity-card {
		min-height: 380px;
		padding: 24px;
	}

	.director-list article {
		grid-template-columns: 48px 1fr;
		padding: 20px;
	}

	.director-list span {
		width: 48px;
		height: 48px;
	}

	.compliance-timeline div {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 16px 0;
	}

	.office-actions {
		min-width: 0;
	}
}

/* Blue-white logo energy layer */
body {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		radial-gradient(circle at 18% 8%, rgba(0, 99, 165, 0.36), transparent 30%),
		radial-gradient(circle at 86% 20%, rgba(65, 198, 232, 0.18), transparent 26%),
		linear-gradient(180deg, #03111d 0, #061827 42%, #03111d 100%);
	background-size: 58px 58px, 58px 58px, auto, auto, auto;
}

.site-header::before {
	height: 4px;
	background: linear-gradient(90deg, #fff, #0063a5 22%, #41c6e8 52%, #0063a5 78%, #fff);
}

.site-header {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 28%, rgba(65, 198, 232, 0.07)),
		rgba(2, 14, 24, 0.9);
}

.brand img,
.footer-logo img,
.console-logo {
	border: 2px solid rgba(255, 255, 255, 0.7);
	box-shadow:
		0 0 0 1px rgba(0, 99, 165, 0.5),
		0 18px 42px rgba(0, 99, 165, 0.24),
		0 0 44px rgba(65, 198, 232, 0.22);
}

.main-nav {
	border-color: rgba(255, 255, 255, 0.18);
	background:
		linear-gradient(135deg, rgba(0, 99, 165, 0.18), rgba(255, 255, 255, 0.04)),
		rgba(2, 18, 31, 0.86);
}

.nav-cta,
.button {
	background: linear-gradient(135deg, #0063a5, #0b8fd8 48%, #41c6e8);
	color: #fff;
	box-shadow:
		0 18px 44px rgba(0, 99, 165, 0.34),
		0 0 28px rgba(65, 198, 232, 0.2);
}

.button.secondary {
	border: 1px solid rgba(255, 255, 255, 0.28);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(0, 99, 165, 0.14)),
		rgba(2, 18, 31, 0.7);
}

.registry-hero {
	background:
		linear-gradient(105deg, rgba(0, 18, 33, 0.96), rgba(0, 51, 84, 0.82) 46%, rgba(0, 99, 165, 0.32)),
		url("http://localhost/lim_kim/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
}

.registry-console {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 36%),
		linear-gradient(180deg, rgba(0, 99, 165, 0.22), rgba(3, 17, 29, 0.92));
}

.registry-console::after {
	position: absolute;
	right: 22px;
	bottom: 22px;
	width: 132px;
	height: 132px;
	border: 18px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.trade-strip,
.registry-fact-wall article,
.identity-stack article,
.director-list article,
.compliance-panel,
.compliance-timeline,
.office-card,
.service-feature-card,
.product-card,
.dealing-card,
.partner-brand-card,
.value-grid article,
.founder-letter-card,
.contact-info-panel,
.modern-contact-form-card {
	border-color: rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 99, 165, 0.08)),
		rgba(3, 18, 30, 0.88);
}

.registry-fact-wall article,
.identity-stack article,
.director-list article,
.dealing-card,
.product-card,
.partner-brand-card {
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.registry-fact-wall article:hover,
.identity-stack article:hover,
.director-list article:hover,
.dealing-card:hover,
.product-card:hover,
.partner-brand-card:hover {
	border-color: rgba(65, 198, 232, 0.58);
	transform: translateY(-6px);
	box-shadow:
		0 26px 72px rgba(0, 0, 0, 0.3),
		0 0 34px rgba(65, 198, 232, 0.17);
}

.identity-card {
	background:
		linear-gradient(130deg, rgba(0, 30, 51, 0.88), rgba(0, 99, 165, 0.28)),
		url("http://localhost/lim_kim/wp-content/uploads/2024/02/topic_trade-analysis.jpg") center/cover;
}

.section-kicker,
.eyebrow,
.trade-strip span,
.console-fact-grid span,
.registry-fact-wall span,
.director-list span {
	color: #73d7ff;
}

.section-title,
.registry-copy h1,
.identity-card h2,
.compliance-panel h2,
.office-card h2 {
	text-shadow: 0 0 28px rgba(65, 198, 232, 0.12);
}

/* Hospitality editorial theme inspired by the LIM & KIM logo */
:root {
	--hospitality-cream: #f3eee8;
	--hospitality-cream-2: #fbf8f4;
	--hospitality-blue: #0063a5;
	--hospitality-navy: #062238;
	--hospitality-ink: #172738;
}

body {
	background: var(--hospitality-cream);
	color: var(--hospitality-ink);
}

.site-header {
	background: rgba(251, 248, 244, 0.92);
	border-bottom-color: rgba(0, 99, 165, 0.14);
	color: var(--hospitality-ink);
}

.site-header::before {
	background: linear-gradient(90deg, var(--hospitality-blue), #77cbed, #fff, var(--hospitality-blue));
}

.main-nav {
	border-color: rgba(0, 99, 165, 0.16);
	background: rgba(255, 255, 255, 0.76);
	color: var(--hospitality-ink);
	box-shadow: 0 14px 36px rgba(0, 99, 165, 0.08);
}

.main-nav a {
	color: var(--hospitality-ink);
}

.main-nav a:hover,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.main-nav .current-menu-item a {
	background: rgba(0, 99, 165, 0.1);
	color: var(--hospitality-blue);
}

.nav-dropdown-menu,
.nav-dropdown-menu::before {
	background: var(--hospitality-cream-2);
	border-color: rgba(0, 99, 165, 0.16);
}

.nav-dropdown-menu a {
	color: var(--hospitality-ink);
}

.nav-toggle {
	background: #fff;
}

.nav-toggle span {
	background: var(--hospitality-blue);
}

.button,
.nav-cta {
	background: var(--hospitality-blue);
	color: #fff;
	box-shadow: 0 16px 34px rgba(0, 99, 165, 0.24);
}

.button.secondary {
	border-color: rgba(255, 255, 255, 0.58);
	background: rgba(255, 255, 255, 0.92);
	color: var(--hospitality-blue);
}

.brand img,
.footer-logo img,
.hero-mark {
	border: 1px solid rgba(0, 99, 165, 0.16);
	background: #fff;
	box-shadow: 0 14px 34px rgba(0, 99, 165, 0.14);
}

.hospitality-hero {
	position: relative;
	display: grid;
	min-height: calc(100vh - 88px);
	align-items: center;
	overflow: hidden;
	background: var(--hospitality-navy);
	color: #fff;
}

.hospitality-hero-media {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.hospitality-hero-media div {
	position: relative;
	background-position: center;
	background-size: cover;
}

.hospitality-hero-media div::after {
	position: absolute;
	inset: 0;
	background: rgba(5, 20, 32, 0.55);
	content: "";
}

.hospitality-hero-media div:first-child::after {
	background:
		linear-gradient(90deg, rgba(5, 20, 32, 0.65), rgba(5, 20, 32, 0.28)),
		rgba(0, 99, 165, 0.18);
}

.hospitality-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	justify-items: center;
	width: min(940px, calc(100% - 32px));
	margin: 0 auto;
	padding: 76px 0;
	text-align: center;
}

.hero-mark {
	width: min(420px, 92vw);
	margin-bottom: 26px;
	padding: 8px 10px;
	border-radius: 8px;
}

.hospitality-hero .eyebrow {
	color: #d7f1ff;
}

.hospitality-hero h1 {
	max-width: 920px;
	margin: 12px 0 20px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 7vw, 82px);
	font-weight: 500;
	line-height: 0.98;
	text-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.hospitality-hero p {
	max-width: 700px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(17px, 2vw, 21px);
}

.hospitality-intro {
	padding: 56px 0;
	background: var(--hospitality-cream);
	text-align: center;
}

.hospitality-intro-inner {
	display: grid;
	justify-items: center;
}

.intro-symbol {
	display: grid;
	width: 70px;
	height: 70px;
	margin-bottom: 18px;
	place-items: center;
	border: 2px solid var(--hospitality-blue);
	border-radius: 50%;
	color: var(--hospitality-blue);
	font-weight: 900;
}

.hospitality-intro h2 {
	max-width: 820px;
	margin: 0 0 14px;
	color: var(--hospitality-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 500;
	line-height: 1.1;
}

.hospitality-intro p {
	max-width: 620px;
	margin: 0 0 20px;
	color: #5e6d78;
}

.micro-button {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--hospitality-blue);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.hospitality-services,
.hospitality-story {
	background: var(--hospitality-cream);
}

.hospitality-heading,
.hospitality-story-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
	gap: 42px;
	align-items: end;
	margin-bottom: 32px;
}

.hospitality-services .section-title,
.hospitality-story .section-title {
	color: var(--hospitality-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
}

.hospitality-services .section-copy,
.story-copy p {
	color: #60717c;
}

.hospitality-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.hospitality-card {
	overflow: hidden;
	border: 1px solid rgba(0, 99, 165, 0.12);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(23, 39, 56, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hospitality-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 72px rgba(0, 99, 165, 0.16);
}

.hospitality-card img {
	width: 100%;
	height: 270px;
	object-fit: cover;
}

.hospitality-card div {
	padding: 22px;
}

.hospitality-card h3 {
	margin: 0 0 8px;
	color: var(--hospitality-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.08;
}

.hospitality-card p {
	margin: 0;
	color: #62717d;
}

.hospitality-feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 620px;
	background: #fff;
}

.feature-image {
	background-position: center;
	background-size: cover;
}

.feature-panel {
	display: grid;
	align-content: center;
	padding: clamp(34px, 7vw, 90px);
	background:
		linear-gradient(135deg, rgba(0, 99, 165, 0.08), transparent),
		var(--hospitality-cream-2);
}

.feature-panel h2,
.hospitality-banner h2 {
	max-width: 680px;
	margin: 10px 0 18px;
	color: var(--hospitality-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 5vw, 62px);
	font-weight: 500;
	line-height: 1.02;
}

.feature-panel p {
	max-width: 620px;
	margin: 0 0 28px;
	color: #5c6c77;
	font-size: 18px;
}

.hospitality-tiles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.hospitality-tiles article {
	position: relative;
	display: grid;
	min-height: 430px;
	align-items: end;
	padding: 26px;
	background-position: center;
	background-size: cover;
	color: #fff;
}

.hospitality-tiles article::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 18, 31, 0.18), rgba(2, 18, 31, 0.78));
	content: "";
}

.hospitality-tiles div {
	position: relative;
	z-index: 1;
}

.hospitality-tiles h3 {
	margin: 0 0 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 500;
	line-height: 1;
}

.hospitality-tiles a {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	padding: 0 16px;
	border-radius: 999px;
	background: #fff;
	color: var(--hospitality-blue);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.story-copy {
	display: grid;
	gap: 16px;
	font-size: 18px;
}

.story-copy p {
	margin: 0;
}

.hospitality-banner {
	position: relative;
	display: grid;
	min-height: 520px;
	place-items: center;
	padding: 80px 20px;
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.hospitality-banner::before {
	position: absolute;
	inset: 0;
	background: rgba(2, 18, 31, 0.62);
	content: "";
}

.hospitality-banner div {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
}

.hospitality-banner h2 {
	color: #fff;
	text-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.site-footer {
	background: var(--hospitality-navy);
}

@media (max-width: 1040px) {
	.hospitality-card-grid,
	.hospitality-tiles {
		grid-template-columns: repeat(2, 1fr);
	}

	.hospitality-feature,
	.hospitality-heading,
	.hospitality-story-grid {
		grid-template-columns: 1fr;
	}

	.feature-image {
		min-height: 360px;
	}
}

@media (max-width: 700px) {
	.hospitality-hero-media {
		grid-template-columns: 1fr;
	}

	.hospitality-hero-media div:last-child {
		display: none;
	}

	.hospitality-hero-content {
		padding: 58px 0;
	}

	.hospitality-hero h1 {
		font-size: clamp(38px, 12vw, 56px);
	}

	.hospitality-card-grid,
	.hospitality-tiles {
		grid-template-columns: 1fr;
	}

	.hospitality-card img,
	.hospitality-tiles article {
		min-height: 0;
		height: 300px;
	}
}

/* California Vending inspired clean conversion */
:root {
	--cv-navy: #071928;
	--cv-navy-2: #0e2638;
	--cv-ink: #1f2937;
	--cv-muted: #667085;
	--cv-orange: #0063a5;
	--cv-orange-dark: #004f84;
	--cv-logo-blue: #0063a5;
	--cv-logo-cyan: #41c6e8;
	--cv-bg: #f7f7f5;
	--cv-card: #ffffff;
	--cv-line: #e7e5df;
	--brand: var(--cv-orange);
	--brand-rgb: 0, 99, 165;
	--brand-2: #0e7490;
	--brand-2-rgb: 14, 116, 144;
	--gold: #f6c343;
}

body {
	background: var(--cv-bg);
	color: var(--cv-ink);
	font-family: Inter, "Albert Sans", Arial, sans-serif;
}

.section-inner,
.nav-wrap {
	width: min(1140px, calc(100% - 40px));
}

.site-header {
	position: sticky;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(231, 229, 223, 0.9);
	box-shadow: none;
	color: var(--cv-ink);
}

.site-header::before {
	display: none;
}

.nav-wrap {
	min-height: 54px;
	gap: 18px;
}

.brand {
	padding: 6px 0;
}

.brand img {
	width: 76px;
	height: 76px;
	max-height: none;
	object-fit: contain;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.main-nav {
	gap: 2px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--cv-ink);
	font-size: 13px;
	font-weight: 800;
}

.main-nav a {
	min-height: 38px;
	padding: 0 13px;
	border-radius: 8px;
	color: var(--cv-ink);
}

.main-nav a:hover,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.main-nav .current-menu-item a {
	background: rgba(0, 99, 165, 0.09);
	color: var(--cv-orange);
}

.nav-dropdown-menu {
	border-color: var(--cv-line);
	background: #fff;
	box-shadow: 0 24px 64px rgba(7, 25, 40, 0.14);
}

.nav-dropdown-menu::before {
	background: #fff;
	border-color: var(--cv-line);
}

.nav-cta,
.button {
	min-height: 42px;
	padding: 0 20px;
	border: 0;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--cv-logo-blue), #0879bf 58%, var(--cv-logo-cyan));
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	box-shadow: none;
}

.nav-cta:hover,
.button:hover {
	background: linear-gradient(135deg, var(--cv-orange-dark), var(--cv-logo-blue));
	box-shadow: none;
	transform: translateY(-1px);
}

.button.secondary {
	border: 1px solid var(--cv-line);
	background: #fff;
	color: var(--cv-ink);
}

.button.secondary:hover {
	background: #fafafa;
	color: var(--cv-orange);
}

.eyebrow,
.section-kicker {
	color: var(--cv-orange);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.section-title {
	max-width: 860px;
	margin: 0 auto 12px;
	color: var(--cv-ink);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 900;
	line-height: 1.08;
	text-align: center;
}

.section-copy {
	max-width: 650px;
	margin: 0 auto 34px;
	color: var(--cv-muted);
	font-size: 14px;
	line-height: 1.7;
	text-align: center;
}

.band {
	padding: 78px 0;
}

.soft,
.band.soft {
	background: var(--cv-bg);
}

.cv-hero {
	position: relative;
	background: var(--cv-navy);
	color: #fff;
}

.cv-hero::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 25, 43, 0.97), rgba(0, 72, 120, 0.86)),
		url("http://localhost/lim_kim/wp-content/uploads/2024/02/seoul-scaled.jpg") center/cover;
	content: "";
}

.cv-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
	gap: 86px;
	align-items: center;
	min-height: 540px;
	padding: 76px 0 96px;
}

.cv-hero-copy h1 {
	max-width: 590px;
	margin: 14px 0 20px;
	color: #fff;
	font-size: clamp(42px, 5vw, 62px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.cv-hero-copy p {
	max-width: 610px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 16px;
	line-height: 1.75;
}

.cv-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 700;
}

.cv-hero-meta span::before {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 7px;
	border-radius: 999px;
	background: #24d17e;
	content: "";
	vertical-align: 1px;
}

.cv-quote-card {
	padding: 28px;
	border: 1px solid rgba(65, 198, 232, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(65, 198, 232, 0.12), rgba(0, 99, 165, 0.04)),
		var(--cv-navy-2);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.cv-quote-card h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 18px;
	line-height: 1.2;
}

.cv-quote-card p,
.cv-quote-card small {
	color: rgba(255, 255, 255, 0.66);
}

.cv-quote-card p {
	margin: 0 0 18px;
	font-size: 13px;
}

.cv-quote-card small {
	display: block;
	margin-top: 12px;
	font-size: 10px;
	text-align: center;
}

.cv-quote-card form {
	display: grid;
	gap: 12px;
}

.cv-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.cv-quote-card input,
.modern-contact-form input,
.modern-contact-form textarea {
	width: 100%;
	min-height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	padding: 0 14px;
	font: inherit;
	font-size: 13px;
	outline: none;
}

.cv-quote-card input::placeholder {
	color: rgba(255, 255, 255, 0.58);
}

.cv-quote-card .button {
	width: 100%;
	margin-top: 2px;
}

.cv-review-pill {
	position: absolute;
	right: 0;
	bottom: -17px;
	left: 0;
	z-index: 2;
	width: max-content;
	max-width: calc(100% - 40px);
	margin: 0 auto;
	padding: 8px 18px;
	border-radius: 999px;
	background: #1e293b;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 12px 36px rgba(7, 25, 40, 0.2);
}

.cv-centered-heading {
	text-align: center;
}

.cv-step-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.cv-benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cv-card,
.service-feature-card,
.product-card,
.partner-brand-card,
.value-grid article,
.modern-contact-form-card,
.contact-info-panel,
.content-panel,
.roadmap-card,
.dealing-card {
	border: 1px solid var(--cv-line);
	border-radius: 8px;
	background: var(--cv-card);
	box-shadow: none;
}

.cv-card {
	padding: 30px 26px;
	text-align: center;
}

.cv-card span,
.service-card span,
.service-feature-card span,
.value-grid span {
	display: inline-grid;
	width: 34px;
	height: 34px;
	margin-bottom: 18px;
	place-items: center;
	border-radius: 7px;
	background: rgba(0, 99, 165, 0.09);
	color: var(--cv-orange);
	font-size: 12px;
	font-weight: 900;
}

.cv-card h3 {
	margin: 0 0 10px;
	color: var(--cv-ink);
	font-size: 17px;
	line-height: 1.2;
}

.cv-card p {
	margin: 0;
	color: var(--cv-muted);
	font-size: 13px;
	line-height: 1.65;
}

.cv-benefits-section .section-title span {
	color: var(--cv-orange);
}

.cv-benefit-card {
	position: relative;
	overflow: hidden;
	padding-top: 34px;
}

.cv-benefit-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--cv-logo-blue), var(--cv-logo-cyan));
	content: "";
	opacity: 0;
	transition: opacity 0.18s ease;
}

.cv-benefit-card:hover::before {
	opacity: 1;
}

.cv-card .benefit-icon {
	width: 56px;
	height: 56px;
	margin-bottom: 22px;
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(65, 198, 232, 0.16), rgba(0, 99, 165, 0.08)),
		#edf7fc;
	color: var(--cv-logo-blue);
}

.benefit-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cv-benefit-card:hover .benefit-icon {
	background: linear-gradient(135deg, var(--cv-logo-blue), var(--cv-logo-cyan));
	color: #fff;
}

.cv-showcase {
	display: grid;
	place-items: center;
}

.cv-showcase img {
	width: min(640px, 100%);
	aspect-ratio: 16 / 8;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 20px 60px rgba(7, 25, 40, 0.12);
}

.cv-service-tabs {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
}

.cv-service-tabs a {
	display: grid;
	min-height: 82px;
	place-items: center;
	border: 1px solid var(--cv-line);
	border-radius: 8px;
	background: #fff;
	color: var(--cv-ink);
	font-size: 13px;
	font-weight: 900;
	text-align: center;
}

.cv-service-tabs a:first-child,
.cv-service-tabs a:hover {
	border-color: var(--cv-orange);
	color: var(--cv-orange);
}

.cv-faq-list {
	max-width: 720px;
}

.cv-faq-list details {
	border-bottom: 1px solid var(--cv-line);
	background: transparent;
}

.cv-faq-list summary {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 17px 0;
	color: var(--cv-ink);
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
}

.cv-faq-list summary::after {
	color: var(--cv-muted);
	content: "+";
}

.cv-faq-list details[open] summary::after {
	content: "-";
}

.cv-faq-list p {
	margin: -4px 0 18px;
	color: var(--cv-muted);
	font-size: 13px;
	line-height: 1.65;
}

.cv-final-cta {
	padding: 78px 0;
	background: var(--cv-navy);
	color: #fff;
	text-align: center;
}

.cv-final-cta h2 {
	max-width: 880px;
	margin: 0 auto 12px;
	color: #fff;
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.1;
}

.cv-final-cta p {
	max-width: 590px;
	margin: 0 auto 24px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.cv-final-cta small {
	display: block;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.52);
}

.site-footer {
	padding: 70px 0 28px;
	background: var(--cv-navy);
	color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	gap: 54px;
}

.footer-logo img {
	width: 86px;
	height: 86px;
	max-height: none;
	object-fit: contain;
	margin-bottom: 18px;
	border: 0;
	background: #fff;
	box-shadow: none;
}

.footer-grid h3,
.footer-grid h4 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 15px;
}

.footer-grid p,
.footer-grid a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	line-height: 1.75;
}

.footer-grid a {
	display: block;
	margin-bottom: 8px;
}

.footer-grid a:hover {
	color: #fff;
}

.footer-bottom {
	margin-top: 50px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.48);
	font-size: 12px;
	text-align: center;
}

.modern-page-hero,
.about-hero,
.brand-products-hero,
.contact-hero {
	background: var(--cv-navy);
	color: #fff;
}

.modern-page-hero h1,
.about-hero h1,
.brand-products-hero h1,
.contact-hero h1 {
	color: #fff;
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 900;
	line-height: 1.02;
}

.modern-page-hero p,
.about-hero p,
.brand-products-hero p,
.contact-hero p {
	color: rgba(255, 255, 255, 0.74);
}

.modern-contact-form input,
.modern-contact-form textarea {
	border-color: var(--cv-line);
	background: #fff;
	color: var(--cv-ink);
}

@media (max-width: 920px) {
	.nav-wrap {
		min-height: 64px;
	}

	.main-nav {
		padding: 10px;
		border: 1px solid var(--cv-line);
		background: #fff;
	}

	.cv-hero-grid,
	.footer-grid,
	.cv-step-grid,
	.cv-benefit-grid {
		grid-template-columns: 1fr;
	}

	.cv-hero-grid {
		gap: 28px;
		min-height: auto;
		padding: 54px 0 78px;
	}

	.cv-service-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.section-inner,
	.nav-wrap {
		width: min(100% - 28px, 1140px);
	}

	.band {
		padding: 58px 0;
	}

	.cv-form-row,
	.cv-service-tabs {
		grid-template-columns: 1fr;
	}

	.cv-quote-card {
		padding: 20px;
	}

	.cv-hero-copy h1 {
		font-size: clamp(36px, 12vw, 48px);
	}

	.footer-grid {
		gap: 28px;
	}
}

/* Final polish pass for service and product pages */
.nav-dropdown-menu {
	min-width: 330px;
	padding: 14px;
}

.nav-dropdown-menu a {
	padding: 14px 18px;
	border-radius: 8px;
}

.nav-dropdown-menu strong {
	color: var(--cv-ink);
}

.nav-dropdown-menu span {
	color: #7b8b9b;
}

.service-overview,
.service-detail-band,
.service-process-band,
.local-seo-band,
.brand-partners-section,
.product-showcase-section,
.about-intro,
.about-story,
.founder-message-section,
.journey-statement-section,
.about-roadmap-section,
.about-brands,
.contact-main-section,
.contact-map-section,
.page-cta-band {
	background: var(--cv-bg);
}

.service-overview-grid,
.product-showcase-heading,
.about-intro-grid {
	align-items: center;
}

.service-overview .section-title,
.service-overview .section-copy {
	margin-right: 0;
	margin-left: 0;
	text-align: left;
}

.service-keywords,
.service-feature-card,
.partner-brand-card,
.product-card,
.value-grid article,
.roadmap-card,
.content-panel,
.contact-info-panel,
.modern-contact-form-card {
	background: #fff;
	color: var(--cv-ink);
	border-color: var(--cv-line);
	box-shadow: 0 18px 54px rgba(7, 25, 40, 0.06);
}

.service-feature-card {
	min-height: 250px;
	padding: 28px;
}

.service-feature-card > span,
.service-process span,
.roadmap-marker span {
	color: var(--cv-logo-blue);
}

.service-feature-card h3,
.product-card h3,
.partner-brand-card h3,
.value-grid h3,
.roadmap-card h3,
.contact-info-panel h2,
.modern-contact-form-card h2,
.content-panel h2,
.content-panel h3 {
	color: var(--cv-ink);
}

.service-feature-card p,
.service-keywords span,
.product-card p,
.partner-brand-card p,
.value-grid p,
.roadmap-card li,
.contact-info-panel p,
.content-panel p {
	color: var(--cv-muted);
}

.service-feature-card > span,
.cv-card span,
.service-card span,
.value-grid span {
	background: rgba(0, 99, 165, 0.09);
}

.service-feature-card a {
	color: var(--cv-logo-blue);
}

.service-process div {
	min-height: 158px;
	background:
		linear-gradient(145deg, #142737, #0b1d2c),
		var(--cv-navy);
	border-color: rgba(65, 198, 232, 0.12);
	box-shadow: 0 22px 52px rgba(7, 25, 40, 0.14);
}

.service-process strong {
	color: #fff;
	font-size: 17px;
}

.service-process div::after {
	background: var(--cv-logo-cyan);
}

.local-seo-panel,
.contact-strip {
	background:
		linear-gradient(125deg, rgba(0, 99, 165, 0.2), rgba(7, 25, 40, 0.96)),
		var(--cv-navy);
	border-color: rgba(65, 198, 232, 0.14);
	color: #fff;
	box-shadow: 0 24px 70px rgba(7, 25, 40, 0.16);
}

.local-seo-panel .section-title,
.contact-strip .section-title,
.contact-strip h2 {
	color: #fff;
	text-align: left;
}

.local-seo-panel p,
.contact-strip p {
	color: rgba(255, 255, 255, 0.78);
}

.contact-strip .button.secondary,
.contact-map-panel .button.secondary {
	background: #fff;
	color: var(--cv-logo-blue);
	border-color: #fff;
}

.brand-products-hero-wall img,
.service-image-panel,
.page-visual,
.contact-hero-panel,
.about-hero-card {
	box-shadow: 0 28px 78px rgba(7, 25, 40, 0.22);
}

.partner-brand-card,
.product-card {
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.partner-brand-card:hover,
.product-card:hover,
.service-feature-card:hover {
	border-color: rgba(0, 99, 165, 0.28);
	transform: translateY(-4px);
	box-shadow: 0 26px 70px rgba(7, 25, 40, 0.1);
}

.partner-brand-card img,
.product-card img {
	border: 0;
	background: #fff;
}

.product-card h3 {
	font-size: 14px;
	font-weight: 800;
}

.partner-brand-card p {
	font-weight: 900;
	text-transform: uppercase;
}

.product-showcase-section.soft {
	background: #fff;
}

.product-showcase-section .section-title,
.product-showcase-section .section-copy,
.brand-partners-section .section-title,
.brand-partners-section .section-copy {
	text-align: center;
}

.contact-info-list a,
.contact-info-list div {
	background: #f8fbfd;
}

.modern-contact-form input,
.modern-contact-form textarea {
	background: #fff;
	color: var(--cv-ink);
	border-color: #dce5ec;
}

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
	color: #8da0ad;
}

.site-footer {
	background:
		linear-gradient(180deg, #061929, #04111d),
		var(--cv-navy);
}

.footer-grid h3,
.footer-grid h4 {
	color: #fff;
}

.footer-grid a,
.footer-grid p {
	color: rgba(255, 255, 255, 0.72);
}

.scroll-top-button {
	position: fixed;
	right: 22px;
	bottom: 24px;
	z-index: 90;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cv-logo-blue), var(--cv-logo-cyan));
	color: #fff;
	box-shadow: 0 18px 42px rgba(7, 25, 40, 0.22);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.scroll-top-button span {
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
}

.scroll-top-button.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-top-button:hover {
	box-shadow: 0 22px 54px rgba(0, 99, 165, 0.3);
}

@media (max-width: 920px) {
	.main-nav,
	.nav-dropdown-menu {
		min-width: 0;
		background: #fff;
	}

	.main-nav a,
	.nav-dropdown-menu a,
	.nav-dropdown-menu span,
	.nav-dropdown-menu strong {
		color: var(--cv-ink);
	}

	.nav-dropdown-menu span {
		color: #7b8b9b;
	}

	.service-overview .section-title,
	.service-overview .section-copy,
	.local-seo-panel .section-title,
	.contact-strip .section-title,
	.contact-strip h2 {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.scroll-top-button {
		right: 16px;
		bottom: 18px;
		width: 44px;
		height: 44px;
	}
}
