:root {
--navy: #0a0f1e;
--navy-mid: #141b2d;
--navy-light: #1e2a3f;
--gold: #b8924a;
--gold-light: #d4b978;
--gold-muted: rgba(184,146,74,0.12);
--text-primary: #1a1a1a;
--text-secondary: #4a4a4a;
--text-muted: #777;
--text-light: #999;
--bg-page: #f8f7f5;
--bg-warm: #f5f3ef;
--bg-card: #ffffff;
--border-light: #e8e5e0;
--border-subtle: #f0ede8;
--header-h: 72px;
--max-width: 1080px;
--font-serif: "Noto Serif KR", "Batang", serif;
--font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--success: #15803d;
--warning: #b45309;
}
html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
margin: 0;
padding: var(--header-h) 0 0;
font-family: var(--font-sans);
color: var(--text-primary);
background: var(--bg-page);
line-height: 1.6;
}
img { max-width: 100%; height: auto; }
video, iframe { max-width: 100%; }
.ksl-a11y-hidden,
.visually-hidden {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
} body.ksl-page-index { padding-top: 0; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, li { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; font-family: inherit; } .site-header {
background: rgba(255,255,255,0.97);
height: var(--header-h);
border-bottom: 1px solid var(--border-subtle);
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
backdrop-filter: blur(8px);
}
.header-inner {
max-width: var(--max-width);
margin: 0 auto;
height: 100%;
padding: 0 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 34px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
font-family: var(--font-serif);
font-size: 17px; font-weight: 700;
color: var(--navy); letter-spacing: -0.01em;
}
.logo-sub { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }
.gnb { display: flex; align-items: center; gap: 32px; height: 100%; }
.nav-list { display: flex; gap: 28px; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
font-size: 14px; font-weight: 600;
color: var(--text-secondary); padding: 0 2px;
position: relative;
background: transparent;
border: 0;
appearance: none;
}
.nav-link::after {
content: '';
position: absolute; bottom: -1px; left: 0;
width: 0; height: 2px;
background: var(--gold);
transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); font-weight: 700; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.sub-menu {
position: absolute; top: 100%; left: 50%;
transform: translateX(-50%) translateY(10px);
background: #fff; min-width: 150px;
border: 1px solid var(--border-light);
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
border-radius: var(--radius-md);
overflow: hidden;
opacity: 0; visibility: hidden;
transition: all 0.2s ease; padding: 8px 0;
}
.nav-item:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sub-menu a { display: block; padding: 10px 18px; font-size: 14px; color: var(--text-secondary); }
.sub-menu a:hover { background: var(--bg-warm); color: var(--navy); font-weight: 700; }
.nav-cta {
padding: 10px 22px;
background: var(--navy); color: #fff;
font-size: 13px; font-weight: 700;
border-radius: var(--radius-md);
transition: var(--transition);
}
.nav-cta:hover { background: var(--navy-mid); }
.menu-toggle { display: none; width: 26px; height: 20px; position: relative; z-index: 1100; }
.menu-toggle span {
display: block; width: 100%; height: 2px;
background: var(--navy); position: absolute; left: 0;
transition: 0.3s; border-radius: var(--radius-sm);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-45deg); }
@media (max-width: 992px) {
.gnb {
position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
background: #fff; flex-direction: column; padding-top: 80px;
transition: 0.3s ease-in-out; z-index: 10000;
box-shadow: -5px 0 20px rgba(0,0,0,0.05);
align-items: flex-start; gap: 0;
}
.gnb.open { right: 0; }
.nav-list { flex-direction: column; width: 100%; height: auto; gap: 0; overflow-y: auto; }
.nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border-subtle); }
.nav-link { display: block; width: 100%; padding: 16px 24px; font-size: 16px; color: var(--navy); font-weight: 700; }
.nav-link::after { display: none; }
.sub-menu {
position: static; width: 100%; box-shadow: none; border: none;
background: var(--bg-warm); transform: none;
opacity: 1; visibility: visible; padding: 0; display: none;
}
.nav-item.active .sub-menu {
display: block; padding: 8px 0 12px;
border-top: 1px solid var(--border-light);
}
.sub-menu a { padding: 12px 32px; font-size: 14px; border-top: 1px solid var(--border-light); font-weight: 700; color: var(--navy); }
.sub-menu a:first-child { border-top: none; }
.nav-cta { margin: 30px auto; width: 90%; text-align: center; padding: 14px; font-size: 16px; border-radius: var(--radius-md); }
.menu-toggle { display: block; z-index: 10001; }
}
@media (max-width: 640px) {
body { font-size: 16px; line-height: 1.8; letter-spacing: -0.01em; }
p, li { line-height: 1.85; }
.menu-toggle { width: 20px; height: 16px; }
.menu-toggle span { height: 1.5px; }
} :root {
--shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
--shadow-md: 0 4px 20px rgba(0,0,0,0.06);
--shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
--radius-sm: 6px;
--radius-md: 10px;
--radius-lg: 14px;
--success: #15803d;
--warning: #b45309;
}
*, *::before, *::after { box-sizing: border-box; }
body {
line-height: 1.7;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.inner,
.container {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 24px;
}
.skip-link {
position: absolute;
top: -48px;
left: 16px;
z-index: 20000;
padding: 10px 14px;
background: #fff;
color: var(--navy);
border-radius: 10px;
border: 1px solid var(--border-light);
box-shadow: 0 16px 40px rgba(10, 15, 30, 0.18);
transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; } .site-header {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
height: var(--header-h);
background: rgba(255,255,255,0.96);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border-light);
box-shadow: 0 2px 12px rgba(10,15,30,0.06);
}
.header-inner {
max-width: var(--max-width); margin: 0 auto; height: 100%;
padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
}
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 34px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
font-family: var(--font-serif); font-size: 18px; font-weight: 700;
color: var(--navy); letter-spacing: -0.02em;
}
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.gnb { display: flex; align-items: center; gap: 24px; height: 100%; }
.nav-list { display: flex; gap: 4px; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
display: inline-flex; align-items: center;
height: 38px; padding: 0 12px;
font-size: 14px; font-weight: 700;
color: var(--text-secondary); border-radius: 6px;
background: transparent;
border: 0;
appearance: none;
}
.nav-link:hover, .nav-link.active { background: var(--gold-muted); color: var(--navy); }
.sub-menu {
position: absolute; top: 100%; left: 50%;
transform: translateX(-50%) translateY(8px);
background: var(--bg-card); min-width: 160px;
border: 1px solid var(--border-light);
box-shadow: 0 12px 32px rgba(10,15,30,0.12);
opacity: 0; visibility: hidden; transition: all 0.2s ease; padding: 6px;
}
.nav-item:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sub-menu a { display: block; padding: 9px 12px; font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.sub-menu a:hover { background: var(--bg-warm); color: var(--navy); }
.nav-cta { height: 40px; padding: 0 18px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; }
.nav-cta:hover { background: var(--navy-mid); }
.menu-toggle {
display: none; width: 24px; height: 18px;
position: relative; z-index: 1100; background: none; padding: 0;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); position: absolute; left: 0; transition: 0.3s; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-45deg); } .site-header.site-header--hero {
height: auto;
background: rgba(10,15,30,0.42);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255,255,255,0.10);
box-shadow: none;
}
.site-header.site-header--hero .header-inner { height: 72px; }
.site-header.site-header--hero .logo-main { color: rgba(255,255,255,0.95); }
.site-header.site-header--hero .logo-sub { color: rgba(255,255,255,0.68); }
.site-header.site-header--hero .nav-link { color: rgba(255,255,255,0.84); }
.site-header.site-header--hero .nav-link:hover,
.site-header.site-header--hero .nav-link.active { background: rgba(184,146,74,0.18); color: #fff; }
.site-header.site-header--hero .nav-cta { background: var(--gold); color: var(--navy); }
.site-header.site-header--hero .nav-cta:hover { background: var(--gold-light); }
.site-header.site-header--hero .menu-toggle span { background: rgba(255,255,255,0.9); } .site-header.site-header--hero.is-scrolled {
background: rgba(10,15,30,0.90);
border-bottom-color: rgba(255,255,255,0.14);
box-shadow: 0 4px 20px rgba(0,0,0,0.22);
} .site-header.site-header--compact {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
height: var(--header-h);
background: rgba(255,255,255,0.96);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border-light);
box-shadow: 0 2px 12px rgba(10,15,30,0.06);
}
.site-header.site-header--compact .header-inner {
max-width: var(--max-width); margin: 0 auto; height: 100%;
padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
}
.site-header.site-header--compact .logo-area { display: flex; align-items: center; gap: 10px; }
.site-header.site-header--compact .logo-img { height: 34px; width: auto; }
.site-header.site-header--compact .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-header.site-header--compact .logo-main {
font-family: var(--font-serif); font-size: 18px; font-weight: 700;
color: var(--navy); letter-spacing: -0.02em;
}
.site-header.site-header--compact .logo-sub {
font-size: 10px; color: var(--text-muted);
letter-spacing: 0.12em; text-transform: uppercase;
}
.site-header.site-header--compact .gnb { display: flex; align-items: center; gap: 24px; height: 100%; }
.site-header.site-header--compact .nav-list { display: flex; gap: 4px; height: 100%; }
.site-header.site-header--compact .nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.site-header.site-header--compact .nav-link {
display: inline-flex; align-items: center;
height: 38px; padding: 0 12px;
font-size: 14px; font-weight: 700;
color: var(--text-secondary); border-radius: 6px;
}
.site-header.site-header--compact .nav-link::after { display: none; }
.site-header.site-header--compact .nav-link:hover,
.site-header.site-header--compact .nav-link.active { background: var(--gold-muted); color: var(--navy); }
.site-header.site-header--compact .sub-menu {
position: absolute; top: 100%; left: 50%;
transform: translateX(-50%) translateY(8px);
background: var(--bg-card); min-width: 160px;
border: 1px solid var(--border-light);
box-shadow: 0 12px 32px rgba(10,15,30,0.12);
opacity: 0; visibility: hidden; transition: all 0.2s ease; padding: 6px;
}
.site-header.site-header--compact .nav-item:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.site-header.site-header--compact .sub-menu a { display: block; padding: 9px 12px; font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.site-header.site-header--compact .sub-menu a:hover { background: var(--bg-warm); color: var(--navy); }
.site-header.site-header--compact .nav-cta { height: 40px; padding: 0 18px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; }
.site-header.site-header--compact .nav-cta:hover { background: var(--navy-mid); }
.site-header.site-header--compact .menu-toggle span { background: var(--navy); }
.header-topline {
background: rgba(10,15,30,0.58);
border-bottom: 1px solid rgba(184,146,74,0.22);
color: rgba(255,255,255,0.75);
font-size: 12px;
letter-spacing: 0.02em;
}
.header-topline-inner {
height: 36px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
}
.topline-copy { font-weight: 600; }
.topline-links {
display: flex;
align-items: center;
gap: 16px;
white-space: nowrap;
font-weight: 700;
}
.topline-links a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.82); }
.topline-links a:hover { color: var(--gold-light); } body.ksl-page-index { padding-top: 0; } .fade-section {
opacity: 0;
transform: translateY(22px);
transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-section.visible { opacity: 1; transform: none; } [data-stagger] > * {
opacity: 0;
transform: translateY(26px);
transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-stagger].stagger-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
[data-stagger].stagger-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 110ms; }
[data-stagger].stagger-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 205ms; }
[data-stagger].stagger-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 290ms; }
[data-stagger].stagger-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 365ms; }
@media (prefers-reduced-motion: reduce) {
[data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
} .site-footer {
background: #050a14;
color: #e5e7eb;
padding: 56px 24px 34px;
border-top: 1px solid rgba(255,255,255,0.05);
font-family: var(--font-sans);
}
.footer-inner {
max-width: var(--max-width);
margin: 0 auto;
display: grid;
grid-template-columns: 1.2fr 1fr 1fr;
gap: 28px;
align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.footer-logo-text { display: flex; flex-direction: column; gap: 2px; }
.footer-logo-main {
font-family: var(--font-serif);
font-size: 17px; font-weight: 700;
color: #f0ede8; letter-spacing: -0.02em;
}
.footer-logo-sub { font-size: 11px; color: #9ca3af; letter-spacing: 0.06em; }
.footer-desc { font-size: 13px; line-height: 1.75; color: #9ca3af; }
.footer-contact { font-size: 13px; line-height: 1.85; color: #d1d5db; }
.footer-contact .label { color: var(--gold); font-weight: 700; margin-right: 6px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin: 0 0 12px; color: #f8f8f6; }
.footer-links { display: grid; gap: 7px; font-size: 13px; }
.footer-links a { color: #d1d5db; opacity: 0.85; }
.footer-links a:hover { color: var(--gold-light); opacity: 1; }
.footer-quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.footer-quick a {
display: flex; align-items: center; gap: 7px;
padding: 8px 10px; background: rgba(255,255,255,0.04);
color: #d1d5db; font-size: 12px; font-weight: 700;
}
.footer-quick a:hover { background: rgba(184,146,74,0.1); color: var(--gold-light); }
.footer-line { max-width: var(--max-width); margin: 26px auto 16px; height: 1px; background: rgba(255,255,255,0.07); }
.footer-notice { max-width: var(--max-width); margin: 0 auto; font-size: 12px; line-height: 1.8; color: #6b7280; }
.footer-bottom {
max-width: var(--max-width); margin: 14px auto 0;
display: flex; flex-wrap: wrap; gap: 10px;
justify-content: space-between; align-items: center;
font-size: 12px; color: #6b7280;
} :root {
--desktop-consult-bar-h: 112px;
}
.desktop-consult-bar {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 9997;
display: none;
background: rgba(10,15,30,0.96);
border-top: 1px solid rgba(184,146,74,0.38);
box-shadow: 0 -12px 42px rgba(0,0,0,0.28);
backdrop-filter: blur(10px);
}
.desktop-consult-inner {
max-width: 1280px;
margin: 0 auto;
padding: 12px 18px;
display: flex;
gap: 14px;
align-items: center;
flex-wrap: wrap;
}
.desktop-consult-copy { flex: 0 0 auto; min-width: 220px; }
.desktop-consult-kicker {
display: inline-flex;
align-items: center;
gap: 6px;
margin-bottom: 6px;
padding: 4px 10px;
border-radius: 999px;
border: 1px solid rgba(184,146,74,0.55);
background: rgba(184,146,74,0.12);
color: rgba(212,185,120,0.98);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.desktop-consult-title {
font-family: var(--font-serif);
font-size: 16px;
font-weight: 800;
color: #fff;
line-height: 1.25;
}
.desktop-consult-sub {
margin-top: 4px;
font-size: 12px;
font-weight: 600;
color: rgba(255,255,255,0.68);
letter-spacing: -0.01em;
}
.desktop-consult-form { flex: 1 1 520px; min-width: 320px; }
.desktop-consult-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.desktop-consult-fields {
display: flex;
gap: 10px;
align-items: center;
}
.desktop-consult-field { flex: 0 0 auto; }
.desktop-consult-field--message { flex: 1 1 auto; min-width: 220px; }
.desktop-consult-input {
height: 42px;
padding: 0 12px;
border-radius: 10px;
border: 1px solid rgba(255,255,255,0.14);
background: rgba(255,255,255,0.06);
color: rgba(255,255,255,0.92);
outline: none;
transition: var(--transition);
font-size: 14px;
}
.desktop-consult-input::placeholder { color: rgba(255,255,255,0.5); }
.desktop-consult-input:focus {
border-color: rgba(184,146,74,0.7);
box-shadow: 0 0 0 3px rgba(184,146,74,0.14);
}
.desktop-consult-textarea {
height: 42px;
padding: 10px 12px;
resize: none;
line-height: 1.4;
overflow: hidden;
}
.desktop-consult-submit {
height: 42px;
padding: 0 16px;
border-radius: 10px;
background: var(--gold);
color: var(--navy);
font-weight: 900;
font-size: 14px;
border: 1px solid rgba(184,146,74,0.9);
transition: var(--transition);
white-space: nowrap;
}
.desktop-consult-submit:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.desktop-consult-submit:disabled { opacity: 0.7; transform: none; cursor: not-allowed; }
.desktop-consult-meta {
margin-top: 8px;
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.desktop-consult-privacy {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: rgba(255,255,255,0.72);
font-weight: 600;
}
.desktop-consult-privacy input { width: 14px; height: 14px; accent-color: var(--gold); }
.desktop-consult-privacy-link {
font-size: 12px;
color: rgba(184,146,74,0.95);
font-weight: 800;
}
.desktop-consult-privacy-link:hover { color: var(--gold-light); }
.desktop-consult-status {
font-size: 12px;
color: rgba(255,255,255,0.72);
font-weight: 600;
}
.desktop-consult-status[data-tone="success"] { color: rgba(212,185,120,0.98); }
.desktop-consult-status[data-tone="error"] { color: rgba(248,113,113,0.92); }
@media (min-width: 993px) {
body { padding-bottom: calc(var(--desktop-consult-bar-h, 112px) + env(safe-area-inset-bottom, 0px)); }
.desktop-consult-bar { display: block; }
.desktop-consult-bar { animation: desktopConsultIn 320ms ease-out both; }
}
@keyframes desktopConsultIn {
from { transform: translateY(14px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
.desktop-consult-bar { animation: none !important; }
}
@media (max-width: 1120px) {
.desktop-consult-copy { min-width: 160px; }
.desktop-consult-sub { display: none; }
}
@media (max-width: 1024px) {
.desktop-consult-fields { flex-wrap: wrap; }
.desktop-consult-field--message { min-width: 100%; }
} .desktop-right-cta {
position: fixed; right: 18px; top: 50%;
transform: translateY(-50%); z-index: 9998; display: none;
}
.desktop-right-cta-stack { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.desktop-right-cta-btn {
display: flex; align-items: center; gap: 12px;
padding: 12px 14px;
background: rgba(10,15,30,0.93);
color: #f0ede8;
text-decoration: none;
box-shadow: 0 8px 28px rgba(0,0,0,0.3);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-md);
transition: var(--transition);
min-width: 164px;
backdrop-filter: blur(10px);
}
.desktop-right-cta-btn.primary { background: var(--gold); color: var(--navy); border-color: transparent; }
.desktop-right-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.desktop-right-cta-btn i { font-size: 17px; width: 20px; text-align: center; }
.desktop-right-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.desktop-right-cta-text .main { font-weight: 800; font-size: 13px; line-height: 1.1; white-space: nowrap; }
.desktop-right-cta-text .sub { font-weight: 600; font-size: 11px; opacity: 0.75; white-space: nowrap; }
.desktop-right-cta-text .sub.mono { font-feature-settings: "tnum"; letter-spacing: 0.02em; }
.desktop-right-cta-details { position: relative; }
.desktop-right-cta-details > summary { list-style: none; }
.desktop-right-cta-details > summary::-webkit-details-marker { display: none; }
.desktop-right-cta-arrow { margin-left: auto; font-size: 12px; opacity: 0.7; transition: transform 0.2s ease; }
.desktop-right-cta-details[open] .desktop-right-cta-arrow { transform: rotate(180deg); }
.desktop-right-cta-dropdown {
position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
width: 220px; background: var(--bg-card);
border: 1px solid var(--border-light);
box-shadow: 0 16px 48px rgba(10,15,30,0.2);
border-radius: var(--radius-lg);
overflow: hidden; padding: 6px;
}
.desktop-right-cta-dropdown a {
display: flex; align-items: center; gap: 10px;
padding: 9px 11px; font-weight: 700; font-size: 13px; color: var(--navy);
}
.desktop-right-cta-dropdown a:hover { background: var(--bg-warm); }
.desktop-right-cta-chip {
width: 22px; height: 22px;
display: inline-flex; align-items: center; justify-content: center;
background: var(--navy); color: var(--gold-light);
font-size: 11px; font-weight: 800; flex-shrink: 0;
border-radius: var(--radius-sm);
} .desktop-right-cta.desktop-right-cta--light { right: 20px; }
.desktop-right-cta--light .desktop-right-cta-btn {
padding: 14px 16px;
background: rgba(10,15,30,0.92);
color: #e8e8e8;
box-shadow: 0 8px 32px rgba(0,0,0,0.2);
min-width: 180px;
backdrop-filter: blur(12px);
}
.desktop-right-cta--light .desktop-right-cta-btn.primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.desktop-right-cta--light .desktop-right-cta-btn:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.desktop-right-cta--light .desktop-right-cta-btn i { font-size: 16px; opacity: 0.9; }
.desktop-right-cta--light .desktop-right-cta-text .main { font-weight: 700; line-height: 1.2; }
.desktop-right-cta--light .desktop-right-cta-text .sub { font-weight: 500; opacity: 0.6; }
.desktop-right-cta--light .desktop-right-cta-arrow { opacity: 0.6; }
.desktop-right-cta--light .desktop-right-cta-details[open] > summary.desktop-right-cta-btn { border-color: rgba(184,146,74,0.4); }
.desktop-right-cta--light .desktop-right-cta-dropdown {
right: calc(100% + 12px);
background: #fff;
box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.desktop-right-cta--light .desktop-right-cta-dropdown a {
padding: 12px 14px;
font-weight: 600;
color: var(--text-primary);
text-decoration: none;
transition: var(--transition);
}
.desktop-right-cta--light .desktop-right-cta-chip { color: var(--gold); font-weight: 700; }
.desktop-right-cta.desktop-right-cta--dark { right: 20px; }
.desktop-right-cta--dark .desktop-right-cta-btn {
padding: 12px 16px;
background: rgba(10,15,30,0.94);
color: #f8fafc;
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
min-width: 168px;
border-radius: var(--radius-md);
backdrop-filter: none;
}
.desktop-right-cta--dark .desktop-right-cta-btn.primary { background: var(--gold); color: #fff; border-color: transparent; }
.desktop-right-cta--dark .desktop-right-cta-btn:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.desktop-right-cta--dark .desktop-right-cta-btn i { font-size: 16px; opacity: 1; }
.desktop-right-cta--dark .desktop-right-cta-dropdown {
right: calc(100% + 12px);
background: #fff;
box-shadow: 0 20px 50px rgba(0,0,0,0.2);
padding: 8px;
}
.desktop-right-cta--dark .desktop-right-cta-dropdown a { padding: 10px 12px; }
.desktop-right-cta--dark .desktop-right-cta-chip { color: var(--gold); font-weight: 900; } body.has-fixed-cta { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
body.ksl-page-index.has-fixed-cta { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
body.has-fixed-cta.ksl-cta-light { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
body.has-fixed-cta.ksl-cta-dark { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
.fixed-cta-bar {
position: fixed; left: 0; bottom: 0; width: 100%;
background: rgba(5, 10, 22, 0.94);
backdrop-filter: blur(18px);
border-top: 1px solid rgba(255,255,255,0.08);
border-top-left-radius: var(--radius-lg);
border-top-right-radius: var(--radius-lg);
box-shadow: 0 -10px 32px rgba(0,0,0,0.35);
z-index: 9999;
padding: 0 6px env(safe-area-inset-bottom, 0px);
}
.fixed-cta-bar.fixed-cta-bar--light { box-shadow: 0 -8px 32px rgba(0,0,0,0.3); }
.fixed-cta-bar.fixed-cta-bar--dark {
border-top: 1px solid rgba(184,146,74,0.35);
box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}
.fixed-cta-inner { width: 100%; max-width: 1280px; margin: 0 auto; display: flex; align-items: stretch; flex-wrap: nowrap; }
.fixed-cta-inner > * { flex: 1 1 0; min-width: 0; }
.cta-dropdown-wrap, .cta-faq-wrap { position: relative; display: flex; }
.cta-dropdown-btn, #ctaFaq { width: 100%; height: 100%; }
.fixed-cta-bar--compact .cta-btn {
display: flex; align-items: center; justify-content: center;
flex-direction: column; gap: 2px;
padding: 10px 0; min-height: 50px;
border: none; border-right: 1px solid rgba(255,255,255,0.08);
background: var(--navy); color: rgba(255,255,255,0.86);
font-size: 10px; font-weight: 700;
white-space: nowrap; cursor: pointer; touch-action: manipulation;
transition: background 0.15s ease;
}
.fixed-cta-bar--compact .cta-btn.primary { background: var(--gold); color: var(--navy); }
.fixed-cta-bar--compact .cta-btn.primary:hover { background: var(--gold-light); }
.fixed-cta-bar--compact .cta-btn:hover { background: var(--navy-mid); }
body.ksl-page-index .fixed-cta-bar--compact .cta-btn { padding: 10px 0; font-size: 10px; }
.fixed-cta-bar--compact .cta-icon {
width: 18px; height: 18px;
display: flex; align-items: center; justify-content: center;
font-size: 11px; font-weight: 800;
background: rgba(255,255,255,0.12); color: var(--gold-light);
}
.fixed-cta-bar--compact .cta-btn.primary .cta-icon { background: rgba(10,15,30,0.2); color: var(--navy); }
.fixed-cta-bar--compact .cta-label-main { font-size: 10px; font-weight: 700; line-height: 1.1; }
.fixed-cta-bar--compact .arrow { font-size: 8px; opacity: 0.75; }
.fixed-cta-bar--compact .cta-dropdown,
.fixed-cta-bar--compact #ctaFaqBox {
display: none;
position: absolute; bottom: calc(58px + env(safe-area-inset-bottom, 0px));
left: 0; width: 100%;
background: var(--bg-card); border: 1px solid var(--border-light);
border-radius: var(--radius-lg);
box-shadow: 0 -8px 24px rgba(10,15,30,0.18); z-index: 2;
}
.fixed-cta-bar--compact .cta-dropdown.open,
.fixed-cta-bar--compact #ctaFaqBox.open { display: block; }
.fixed-cta-bar--compact .cta-dropdown a,
.fixed-cta-bar--compact #ctaFaqBox a {
padding: 11px 14px; display: flex; align-items: center; gap: 8px;
font-size: 13px; font-weight: 700; color: var(--navy);
border-bottom: 1px solid var(--border-subtle);
}
.fixed-cta-bar--compact .cta-dropdown a:last-child,
.fixed-cta-bar--compact #ctaFaqBox a:last-child { border-bottom: none; }
.fixed-cta-bar--compact .sub-icon {
width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
background: var(--navy); color: var(--gold-light); font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.fixed-cta-bar--light .cta-btn {
display: flex; align-items: center; justify-content: center; gap: 6px;
border-radius: 0; padding: 14px 0; min-height: 56px;
border: none; background: var(--navy); color: #e0e0e0;
text-decoration: none; font-size: 12px; font-weight: 600;
white-space: nowrap; cursor: pointer; touch-action: manipulation;
transition: background 0.16s ease;
border-right: 1px solid rgba(255,255,255,0.06);
}
.fixed-cta-bar--light .cta-btn:last-child { border-right: none; }
.fixed-cta-bar--light .cta-btn.primary { background: var(--gold); color: var(--navy); font-weight: 700; }
.fixed-cta-bar--light .cta-icon {
width: 20px; height: 20px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 11px; font-weight: 700;
background: rgba(255,255,255,0.1); color: var(--gold);
}
.fixed-cta-bar--light .cta-btn.primary .cta-icon { background: rgba(10,15,30,0.15); color: var(--navy); }
.fixed-cta-bar--light .cta-label-sub { font-size: 10px; opacity: 0.7; }
.fixed-cta-bar--light .cta-dropdown {
display: none; position: absolute;
bottom: calc(56px + env(safe-area-inset-bottom, 0px));
left: 0; width: 100%;
background: #fff; border: none;
border-radius: var(--radius-lg);
box-shadow: 0 -12px 40px rgba(0,0,0,0.2); z-index: 2;
}
.fixed-cta-bar--light .cta-dropdown.open { display: block; }
.fixed-cta-bar--light .cta-dropdown a {
padding: 14px 16px; display: flex; align-items: center; gap: 10px;
font-size: 14px; color: var(--text-primary); font-weight: 600;
text-decoration: none; border-bottom: 1px solid var(--border-subtle);
}
.fixed-cta-bar--light .cta-dropdown a:last-child { border-bottom: none; }
.fixed-cta-bar--light .cta-dropdown a:hover { background: var(--bg-warm); }
.fixed-cta-bar--light .sub-icon {
width: 20px; height: 20px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
background: var(--navy); color: var(--gold); font-size: 10px; font-weight: 700;
}
.fixed-cta-bar--light #ctaFaqBox {
display: none; position: absolute;
bottom: calc(56px + env(safe-area-inset-bottom, 0px));
left: 0; width: 100%;
background: #fff; border: none;
border-radius: var(--radius-lg);
box-shadow: 0 -12px 40px rgba(0,0,0,0.2); z-index: 2;
}
.fixed-cta-bar--light #ctaFaqBox.open { display: block; }
.fixed-cta-bar--light #ctaFaqBox a {
padding: 14px 16px; display: flex;
font-size: 14px; color: var(--text-primary); font-weight: 600;
text-decoration: none; border-bottom: 1px solid var(--border-subtle);
}
.fixed-cta-bar--light #ctaFaqBox a:last-child { border-bottom: none; }
.fixed-cta-bar--light #ctaFaqBox a:hover { background: var(--bg-warm); }
.fixed-cta-bar--dark .cta-btn {
display: flex; align-items: center; justify-content: center;
gap: 6px; border-radius: 0; padding: 14px 0; min-height: 60px;
border: none; border-right: 1px solid rgba(255,255,255,0.06);
background: var(--navy); color: rgba(255,255,255,0.85);
text-decoration: none; font-size: 13px; font-weight: 700;
white-space: nowrap; cursor: pointer; touch-action: manipulation;
transition: background 0.16s ease;
}
.fixed-cta-bar--dark .cta-btn:last-child { border-right: none; }
.fixed-cta-bar--dark .cta-btn.primary { background: var(--gold); color: #fff; border-right-color: rgba(255,255,255,0.1); }
.fixed-cta-bar--dark .cta-btn.primary:hover { background: var(--gold-light); }
.fixed-cta-bar--dark .cta-icon {
width: 20px; height: 20px;
display: flex; align-items: center; justify-content: center;
font-size: 12px; background: rgba(255,255,255,0.12); color: #fff;
}
.fixed-cta-bar--dark .cta-btn.primary .cta-icon { background: rgba(0,0,0,0.15); }
.fixed-cta-bar--dark .cta-label-sub { font-size: 11px; opacity: 0.7; }
.fixed-cta-bar--dark .cta-dropdown,
.fixed-cta-bar--dark #ctaFaqBox {
display: none; position: absolute;
bottom: calc(60px + env(safe-area-inset-bottom, 0px));
left: 0; width: 100%;
border-radius: var(--radius-lg);
background: #fff; box-shadow: 0 -12px 32px rgba(0,0,0,0.2); z-index: 2;
}
.fixed-cta-inner > :first-child .cta-btn { border-top-left-radius: var(--radius-lg); }
.fixed-cta-inner > :last-child .cta-btn { border-top-right-radius: var(--radius-lg); }
.fixed-cta-bar--dark .cta-dropdown.open,
.fixed-cta-bar--dark #ctaFaqBox.open { display: block; }
.fixed-cta-bar--dark .cta-dropdown a {
padding: 12px 16px; display: flex; align-items: center; gap: 8px;
font-size: 13px; color: var(--navy); text-decoration: none;
border-bottom: 1px solid var(--border-subtle); font-weight: 600;
}
.fixed-cta-bar--dark .cta-dropdown a:last-child { border-bottom: none; }
.fixed-cta-bar--dark #ctaFaqBox a {
padding: 12px 16px; display: flex; font-size: 13px;
color: var(--navy); text-decoration: none;
border-bottom: 1px solid var(--border-subtle); font-weight: 600;
}
.fixed-cta-bar--dark #ctaFaqBox a:last-child { border-bottom: none; }
.fixed-cta-bar--dark .sub-icon {
width: 18px; height: 18px;
display: flex; align-items: center; justify-content: center;
background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 900;
} .ksl-top-button {
position: fixed;
right: clamp(14px, 2.4vw, 24px);
bottom: calc(70px + env(safe-area-inset-bottom, 0px));
width: 52px;
height: 52px;
border: 1px solid rgba(184, 146, 74, 0.42);
border-radius: 999px;
background: rgba(10, 15, 30, 0.9);
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 12px 30px rgba(10, 15, 30, 0.32);
backdrop-filter: blur(8px);
z-index: 10000;
opacity: 0;
transform: translate3d(0, 10px, 0);
pointer-events: none;
transition:
opacity 0.24s ease,
transform 0.24s ease,
background-color 0.24s ease,
border-color 0.24s ease,
box-shadow 0.24s ease;
}
.ksl-top-button i {
font-size: 14px;
line-height: 1;
}
.ksl-top-button-label {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.ksl-top-button.is-visible {
opacity: 1;
transform: translate3d(0, 0, 0);
pointer-events: auto;
}
.ksl-top-button:hover {
background: rgba(10, 15, 30, 0.98);
border-color: rgba(212, 185, 120, 0.95);
box-shadow: 0 16px 32px rgba(10, 15, 30, 0.36);
}
.ksl-top-button:focus-visible {
outline: 3px solid rgba(184, 146, 74, 0.55);
outline-offset: 2px;
} @media (min-width: 993px) {
.desktop-right-cta { display: block; }
.fixed-cta-bar { display: none; }
body.has-fixed-cta { padding-bottom: 0 !important; }
.ksl-top-button {
bottom: calc(var(--desktop-consult-bar-h, 112px) + env(safe-area-inset-bottom, 0px) + 14px);
}
}
@media (max-width: 992px) {
.gnb {
position: fixed; top: var(--header-h); right: -100%;
width: min(100%, 360px); height: calc(100vh - var(--header-h));
background: var(--bg-card); flex-direction: column;
padding: 20px 0 40px; overflow-y: auto;
color: var(--navy);
border-left: 1px solid var(--border-light);
border-top-left-radius: var(--radius-lg);
border-bottom-left-radius: var(--radius-lg);
box-shadow: -4px 0 20px rgba(0,0,0,0.08);
transition: right 0.3s ease; z-index: 1000; align-items: flex-start; gap: 0;
}
.gnb.open { right: 0; }
.nav-list { flex-direction: column; width: 100%; height: auto; gap: 0; }
.nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border-subtle); padding: 4px 0; }
.nav-link { width: calc(100% - 24px); height: auto; padding: 15px 18px; margin: 0 12px; font-size: 16px; border-radius: var(--radius-md); } .site-header .gnb .nav-link {
color: var(--navy);
font-weight: 800;
letter-spacing: -0.01em;
}
.site-header .gnb .nav-link:hover,
.site-header .gnb .nav-link.active {
background: rgba(184,146,74,0.14);
color: var(--navy);
}
.site-header .gnb .nav-item.active > .nav-link,
.site-header .gnb .menu-item-has-children.active > a {
background: rgba(184,146,74,0.14);
color: var(--navy);
}
.sub-menu {
position: static; width: calc(100% - 24px);
margin: 0 12px 8px;
box-shadow: none;
border: 1px solid var(--border-subtle);
border-radius: var(--radius-md);
background: var(--bg-warm);
opacity: 1; visibility: visible; transform: none;
padding: 6px; display: none;
}
.nav-item.active .sub-menu,
.menu-item-has-children.active .sub-menu { display: block; }
.sub-menu a { padding: 11px 20px; margin: 2px 6px; border-radius: var(--radius-sm); font-size: 14px; color: var(--navy); font-weight: 700; }
.sub-menu a:hover { background: rgba(184,146,74,0.12); color: var(--navy); }
.nav-cta { margin: 24px auto; width: calc(100% - 48px); text-align: center; height: 46px; justify-content: center; display: flex; }
.menu-toggle { display: flex; align-items: center; }
.site-header .gnb .nav-link:focus-visible,
.site-header .gnb .sub-menu a:focus-visible,
.site-header .gnb .nav-cta:focus-visible {
outline: 3px solid rgba(184,146,74,0.55);
outline-offset: -3px;
}
}
@media (max-width: 900px) {
.footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
html body { font-size: 16px; }
body.has-fixed-cta.ksl-cta-light { padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }
body.has-fixed-cta.ksl-cta-dark { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
.fixed-cta-bar--light .cta-btn { padding: 10px 0; min-height: 52px; font-size: 11px; }
.fixed-cta-bar--light .cta-label-sub { display: none; }
.fixed-cta-bar--light .cta-dropdown,
.fixed-cta-bar--light #ctaFaqBox { bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }
.fixed-cta-bar--dark .cta-btn { padding: 12px 0; min-height: 56px; font-size: 12px; }
.fixed-cta-bar--dark .cta-label-sub { display: none; }
.fixed-cta-bar--dark .cta-dropdown,
.fixed-cta-bar--dark #ctaFaqBox { bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 640px) {
.site-footer { padding: 40px 16px 28px; }
.footer-inner { grid-template-columns: 1fr; gap: 28px; }
.footer-quick { grid-template-columns: 1fr 1fr; }
.footer-bottom { flex-direction: column; align-items: flex-start; }
body .container,
body .inner,
body .header-inner { padding-left: 16px; padding-right: 16px; }
body .footer-desc,
body .footer-contact,
body .footer-links { font-size: 14px; }
body .footer-quick a { font-size: 13px; }
body .footer-notice,
body .footer-bottom { font-size: 13px; }
} :root {
--ksl-space-1: 10px;
--ksl-space-2: 14px;
--ksl-space-3: 18px;
--ksl-space-4: 24px;
--ksl-space-5: 32px;
--ksl-space-6: 44px;
--ksl-card-radius: 14px;
--ksl-card-border: 1px solid var(--border-light);
--ksl-card-shadow: 0 8px 28px rgba(10, 15, 30, 0.08);
}
main.page-main {
color: var(--text-primary);
background: var(--bg-page);
font-family: var(--font-sans);
line-height: 1.75;
letter-spacing: -0.01em;
}
main.page-main .inner,
main.page-main .container {
max-width: var(--max-width);
margin: 0 auto;
padding-left: clamp(16px, 3vw, 24px);
padding-right: clamp(16px, 3vw, 24px);
}
main.page-main .section-py {
padding-top: clamp(56px, 7vw, 96px);
padding-bottom: clamp(56px, 7vw, 96px);
}
main.page-main :is(.about-hero, .contact-hero, .cases-hero, .faq-hero, .location-hero, .pasan-hero, .hero-area) {
position: relative;
overflow: hidden;
padding-top: clamp(72px, 9vw, 112px);
padding-bottom: clamp(88px, 11vw, 132px);
background:
radial-gradient(130% 150% at 85% -20%, rgba(184, 146, 74, 0.22), rgba(184, 146, 74, 0) 55%),
linear-gradient(145deg, #0a1020 0%, #0b1327 50%, #121d34 100%);
color: #fff;
text-align: center;
}
main.page-main :is(.hero-kicker, .hero-badge, .pasan-hero-kicker, .contact-hero-kicker, .faq-hero-kicker, .cases-kicker, .loc-kicker) {
display: inline-block;
font-size: 12px;
letter-spacing: 0.16em;
text-transform: uppercase;
font-weight: 700;
color: var(--gold-light);
}
main.page-main :is(.hero-title, .pasan-hero-title, .contact-hero-title, .faq-hero-title, .cases-title, .loc-title) {
margin: 0 0 14px;
font-family: var(--font-serif);
font-size: clamp(30px, 4.2vw, 46px);
line-height: 1.3;
letter-spacing: -0.02em;
color: #fff;
}
main.page-main :is(.hero-line, .pasan-hero-line, .loc-hero-line) {
width: 44px;
height: 2px;
margin: 0 auto 18px;
background: var(--gold);
}
main.page-main :is(.hero-desc, .pasan-hero-desc, .contact-hero-desc, .faq-hero-desc, .cases-desc, .loc-desc) {
max-width: 720px;
margin: 0 auto;
font-size: 16px;
line-height: 1.85;
color: rgba(255, 255, 255, 0.78);
} body:not(.ksl-page-index) main.page-main > :is(.about-hero, .contact-hero, .cases-hero, .faq-hero, .location-hero, .pasan-hero, .hero-area, .legal-hero) {
margin-top: calc(var(--header-h) * -1);
}
main.page-main :is(.section-title, .section-heading, .pasan-card-title, .faq-group-title, .cases-head-title, .sec-title, .form-title, .legal-title, .page-title) {
font-family: var(--font-serif);
font-size: clamp(24px, 3vw, 34px);
line-height: 1.35;
letter-spacing: -0.02em;
color: var(--navy);
}
main.page-main :is(.section-kicker, .consult-kicker, .sec-kicker, .faq-group-kicker, .cases-head-kicker, .legal-kicker) {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--gold);
}
main.page-main :is(.section-desc, .pasan-card-desc, .faq-group-desc, .cases-head-sub, .form-desc, .legal-desc, .page-excerpt) {
color: var(--text-secondary);
font-size: 16px;
line-height: 1.85;
}
main.page-main :is(.form-card, .board-card, .info-card, .legal-card, .profile-card, .diff-card, .service-item, .pasan-section-card, .main-card, .mobile-card, .check-card, .sol-card, .case-card, .review-card, .consult-form-card, .select-card, .trans-item, .info-block, .photo-item, .map-container, .lock-form, .q-box, .a-box, .faq-note, .faq-table-wrap) {
border-radius: var(--ksl-card-radius);
border: var(--ksl-card-border);
box-shadow: var(--ksl-card-shadow);
}
main.page-main :is(.form-card, .board-card, .info-card, .legal-card, .diff-card, .service-item, .pasan-section-card, .main-card, .mobile-card, .check-card, .sol-card, .case-card, .review-card, .consult-form-card, .select-card, .trans-item, .info-block, .photo-item, .lock-form, .q-box, .faq-note, .faq-table-wrap) {
background: var(--bg-card);
}
main.page-main .a-box {
background: linear-gradient(180deg, #f6fbf8 0%, #eff8f2 100%);
border-color: #d9efe1;
color: #1e5a35;
}
main.page-main .consult-card {
background:
radial-gradient(120% 120% at 15% -10%, rgba(184, 146, 74, 0.28), rgba(184, 146, 74, 0) 58%),
linear-gradient(150deg, #091022 0%, #0c162b 52%, #14203a 100%);
border: 1px solid rgba(184, 146, 74, 0.28);
border-radius: var(--ksl-card-radius);
box-shadow: 0 16px 42px rgba(10, 15, 30, 0.25);
}
main.page-main .consult-card .consult-title { color: #fff; }
main.page-main .consult-card .consult-kicker { color: var(--gold-light); }
main.page-main .consult-card .consult-desc { color: rgba(255, 255, 255, 0.72); }
main.page-main :is(.btn, .consult-btn, .submit-btn, .cta-btn, .btn-action, .btn-big, .btn-submit-main, .desktop-bottom-cta-btn, .lock-btn) {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 46px;
padding: 0 22px;
border-radius: 10px;
border: 1px solid transparent;
font-weight: 700;
line-height: 1;
letter-spacing: -0.01em;
text-decoration: none;
transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
main.page-main :is(.btn-primary, .submit-btn, .btn-navy, .btn-submit-main, .btn-action.navy, .lock-btn) {
background: var(--navy);
color: #fff;
border-color: var(--navy);
}
main.page-main :is(.btn-primary, .submit-btn, .btn-navy, .btn-submit-main, .btn-action.navy, .lock-btn):hover {
background: var(--navy-mid);
border-color: var(--navy-mid);
box-shadow: 0 10px 24px rgba(10, 15, 30, 0.2);
transform: translateY(-1px);
}
main.page-main :is(.btn-outline, .btn-ghost, .btn-action.light, .desktop-bottom-cta-btn) {
background: #fff;
color: var(--navy);
border-color: rgba(10, 15, 30, 0.22);
}
main.page-main :is(.btn-outline, .btn-ghost, .btn-action.light, .desktop-bottom-cta-btn):hover {
border-color: var(--gold);
color: var(--gold);
box-shadow: 0 10px 24px rgba(10, 15, 30, 0.14);
transform: translateY(-1px);
}
main.page-main :is(.cta-btn, .consult-btn, .btn-gold, .desktop-bottom-cta-btn.primary) {
background: var(--gold);
color: var(--navy);
border-color: var(--gold);
}
main.page-main :is(.cta-btn, .consult-btn, .btn-gold, .desktop-bottom-cta-btn.primary):hover {
background: var(--gold-light);
border-color: var(--gold-light);
color: var(--navy);
box-shadow: 0 10px 24px rgba(184, 146, 74, 0.28);
transform: translateY(-1px);
}
main.page-main :is(.btn-group, .btn-action-group) {
display: flex;
flex-wrap: wrap;
gap: var(--ksl-space-2);
}
main.page-main :is(.form-input, .form-select, .form-textarea, .lock-input) {
border-radius: 10px;
border: 1px solid var(--border-light);
background: #fff;
color: var(--text-primary);
}
main.page-main :is(.form-input, .form-select, .form-textarea, .lock-input):focus {
border-color: var(--gold);
box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.14);
outline: none;
}
main.page-main :is(.acc-btn, .faq-question, .case-q, .board-row, .mobile-card, .select-card, .btn, .consult-btn, .submit-btn, .cta-btn, .btn-action, .btn-big, .btn-submit-main, .desktop-bottom-cta-btn, .lock-btn):focus-visible {
outline: 3px solid rgba(184, 146, 74, 0.42);
outline-offset: 2px;
}
main.page-main .pasan-nav-wrapper {
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--border-light);
}
main.page-main .pasan-nav-link {
font-weight: 700;
letter-spacing: -0.01em;
color: var(--text-muted);
}
main.page-main .pasan-nav-link:hover { color: var(--navy); }
main.page-main .pasan-nav-link.active {
color: var(--navy);
border-bottom-color: var(--gold);
}
main.page-main :is(.board-table thead, .faq-table thead) {
background: var(--navy);
}
main.page-main :is(.board-table th, .faq-table th) {
color: #fff;
}
main.page-main .faq-table tbody th {
color: var(--navy);
}
main.page-main :is(.board-table td, .faq-table td) {
color: var(--text-secondary);
}
@media (max-width: 992px) {
main.page-main :is(.btn, .consult-btn, .submit-btn, .cta-btn, .btn-action, .btn-big, .btn-submit-main, .desktop-bottom-cta-btn, .lock-btn) {
min-height: 44px;
padding: 0 18px;
}
}
@media (max-width: 768px) {
main.page-main :is(.about-hero, .contact-hero, .cases-hero, .faq-hero, .location-hero, .pasan-hero, .hero-area) {
padding-top: calc(var(--header-h) + 6px);
padding-bottom: 74px;
}
main.page-main :is(.hero-title, .pasan-hero-title, .contact-hero-title, .faq-hero-title, .cases-title, .loc-title) {
font-size: clamp(26px, 7vw, 34px);
}
main.page-main :is(.section-title, .section-heading, .pasan-card-title, .faq-group-title, .cases-head-title, .sec-title, .form-title, .legal-title, .page-title) {
font-size: clamp(22px, 5.6vw, 30px);
}
} :root {
--ksl-reading-measure: 66ch;
--ksl-reading-measure-wide: 76ch;
--ksl-section-gap: clamp(64px, 8vw, 112px);
--ksl-card-shadow-soft: 0 18px 46px rgba(10, 15, 30, 0.08);
--ksl-card-shadow-strong: 0 24px 60px rgba(10, 15, 30, 0.14);
}
body {
text-rendering: optimizeLegibility;
}
body.menu-open {
overflow: hidden;
}
.site-header,
.site-header .gnb,
.site-header .nav-link,
.site-header .nav-cta,
.site-header .sub-menu {
transition:
background-color var(--transition),
border-color var(--transition),
box-shadow var(--transition),
color var(--transition),
transform var(--transition),
opacity var(--transition);
}
.site-header .nav-link {
letter-spacing: -0.012em;
}
.site-header .nav-cta {
box-shadow: 0 10px 26px rgba(10, 15, 30, 0.12);
}
.site-header.site-header--hero .nav-link,
.site-header.site-header--hero .topline-links a,
.site-header.site-header--hero .topline-copy {
color: rgba(255, 255, 255, 0.92);
}
.site-header.site-header--hero .nav-link:hover,
.site-header.site-header--hero .nav-link.active,
.site-header.site-header--hero .topline-links a:hover {
color: #fff;
}
.site-header.site-header--hero.is-scrolled .nav-link {
color: rgba(255, 255, 255, 0.9);
}
main.page-main {
font-size: clamp(16px, 0.25vw + 15px, 18px);
line-height: 1.82;
letter-spacing: -0.012em;
overflow-x: clip;
}
main.page-main :is(p, li, dd, dt, blockquote, h1, h2, h3, h4, h5, h6, span, label, small, strong, em) {
word-break: keep-all;
overflow-wrap: break-word;
}
main.page-main :is(a, code, pre, .break-anywhere) {
overflow-wrap: anywhere;
word-break: break-word;
}
main.page-main p {
margin: 0 0 1em;
} main.page-main .wp-content > :is(h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote) {
max-width: min(var(--ksl-reading-measure-wide), 100%);
margin-left: auto;
margin-right: auto;
}
main.page-main .wp-content :is(p, li, dd, dt) {
color: #334155;
line-height: 1.92;
text-wrap: pretty;
}
main.page-main .wp-content :is(h2, h3, h4, h5, h6) {
font-family: var(--font-serif);
letter-spacing: -0.02em;
line-height: 1.35;
color: var(--navy);
margin: 1.6em auto 0.6em;
}
main.page-main .wp-content h2 { font-size: clamp(20px, 1.7vw, 28px); }
main.page-main .wp-content h3 { font-size: clamp(18px, 1.35vw, 22px); }
main.page-main .wp-content h4 { font-size: 18px; }
main.page-main .wp-content :is(ul, ol) {
padding-left: 1.2em;
margin: 0 0 1.1em;
}
main.page-main .wp-content li {
margin: 0.35em 0;
}
main.page-main .wp-content blockquote {
margin: 0 0 1.2em;
padding: 14px 16px;
border-left: 4px solid rgba(184, 146, 74, 0.55);
background: rgba(245, 243, 239, 0.75);
border-radius: 12px;
}
main.page-main .wp-content a {
color: var(--navy);
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.18em;
}
main.page-main .wp-content a:hover {
color: var(--gold);
}
main.page-main .section-py {
padding-top: var(--ksl-section-gap);
padding-bottom: var(--ksl-section-gap);
}
main.page-main :is(.page-head, .ksl-page-head) {
display: grid;
gap: 14px;
max-width: min(760px, 100%);
margin-bottom: clamp(28px, 4vw, 44px);
}
main.page-main :is(.hero-title, .pasan-hero-title, .contact-hero-title, .faq-hero-title, .cases-title, .loc-title, .section-title, .section-heading, .pasan-card-title, .faq-group-title, .cases-head-title, .sec-title, .form-title, .legal-title, .page-title) {
text-wrap: balance;
}
main.page-main :is(.hero-desc, .pasan-hero-desc, .contact-hero-desc, .faq-hero-desc, .cases-desc, .loc-desc) {
max-width: min(var(--ksl-reading-measure-wide), 100%);
}
main.page-main :is(.section-desc, .pasan-card-desc, .faq-group-desc, .cases-head-sub, .form-desc, .legal-desc, .page-excerpt) {
max-width: min(var(--ksl-reading-measure), 100%);
font-size: clamp(16px, 1.06vw, 18px);
line-height: 1.92;
color: #334155;
text-wrap: pretty;
}
main.page-main .section-header {
display: grid;
gap: 14px;
max-width: min(760px, 100%);
margin-bottom: clamp(34px, 5vw, 58px);
}
main.page-main :is(.section-kicker, .consult-kicker, .sec-kicker, .faq-group-kicker, .cases-head-kicker, .legal-kicker) {
margin-bottom: 0;
}
main.page-main :is(.form-card, .board-card, .info-card, .legal-card, .profile-card, .diff-card, .service-item, .pasan-section-card, .main-card, .mobile-card, .check-card, .sol-card, .case-card, .review-card, .consult-form-card, .select-card, .trans-item, .info-block, .photo-item, .map-container, .lock-form, .q-box, .a-box, .faq-note, .faq-table-wrap) {
box-shadow: var(--ksl-card-shadow-soft);
transition:
transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
main.page-main :is(.form-card, .board-card, .info-card, .legal-card, .profile-card, .diff-card, .service-item, .pasan-section-card, .main-card, .mobile-card, .check-card, .sol-card, .case-card, .review-card, .consult-form-card, .select-card, .trans-item, .info-block, .photo-item, .map-container, .lock-form, .q-box, .a-box, .faq-note, .faq-table-wrap):hover {
transform: translateY(-4px);
border-color: rgba(184, 146, 74, 0.3);
box-shadow: var(--ksl-card-shadow-strong);
}
main.page-main .consult-card:hover,
main.page-main .faq-table-wrap:hover,
main.page-main .map-container:hover {
transform: none;
}
main.page-main :is(.btn, .consult-btn, .submit-btn, .cta-btn, .btn-action, .btn-big, .btn-submit-main, .desktop-bottom-cta-btn, .lock-btn) {
min-height: 50px;
padding: 0 24px;
border-radius: 12px;
font-size: 15px;
font-weight: 800;
letter-spacing: -0.015em;
}
main.page-main :is(.form-input, .form-select, .form-textarea, .lock-input) {
min-height: 52px;
padding: 14px 16px;
font-size: 16px;
line-height: 1.6;
}
main.page-main .form-textarea {
min-height: 132px;
}
.fade-section {
opacity: 0;
transform: translate3d(0, 30px, 0);
transition:
opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
will-change: opacity, transform;
}
.fade-section.visible {
opacity: 1;
transform: translate3d(0, 0, 0);
}
.footer-desc,
.footer-links a,
.footer-quick a,
.footer-notice,
.footer-bottom {
color: rgba(229, 231, 235, 0.88);
}
.footer-quick a {
border: 1px solid rgba(255, 255, 255, 0.06);
}
[data-stagger] > * {
opacity: 0;
transform: translate3d(0, 26px, 0);
transition:
opacity 0.66s cubic-bezier(0.22, 1, 0.36, 1),
transform 0.66s cubic-bezier(0.22, 1, 0.36, 1);
transition-delay: calc(var(--stagger-index, 0) * 90ms);
will-change: opacity, transform;
}
[data-stagger].stagger-visible > * {
opacity: 1;
transform: translate3d(0, 0, 0);
}
@media (max-width: 992px) {
body.menu-open::before {
content: "";
position: fixed;
inset: var(--header-h) 0 0;
background: rgba(10, 15, 30, 0.4);
backdrop-filter: blur(4px);
z-index: 999;
}
.site-header .gnb {
width: min(100%, 380px);
padding: 18px 0 34px;
border-top-left-radius: 18px;
border-bottom-left-radius: 18px;
box-shadow: -18px 0 44px rgba(10, 15, 30, 0.16);
z-index: 1001;
}
.site-header .nav-list {
padding-top: 6px;
}
.site-header .nav-item {
padding: 6px 0;
}
.site-header .nav-link {
width: calc(100% - 24px);
margin: 0 12px;
padding: 16px 18px;
font-size: 16px;
border-radius: 12px;
}
.site-header .menu-toggle {
min-width: 44px;
min-height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
} .site-header .menu-toggle span {
width: 16px;
left: 50%;
height: 2px;
transform: translateX(-50%);
}
.site-header .menu-toggle span:nth-child(2) {
transform: translateX(-50%) translateY(-50%);
}
.site-header .menu-toggle.active span:nth-child(1) {
transform: translateX(-50%) rotate(45deg);
}
.site-header .menu-toggle.active span:nth-child(3) {
transform: translateX(-50%) rotate(-45deg);
}
.site-header .menu-toggle::before {
content: "";
position: absolute;
inset: -10px;
}
.site-header .sub-menu {
width: calc(100% - 24px);
margin: 0 12px 10px;
padding: 8px;
border-radius: 12px;
}
.site-header .sub-menu a {
padding: 12px 14px;
margin: 0;
font-size: 14px;
line-height: 1.55;
}
.site-header .nav-cta {
width: calc(100% - 48px);
min-height: 48px;
margin-top: 18px;
border-radius: 12px;
}
main.page-main .section-py {
padding-top: clamp(56px, 8vw, 84px);
padding-bottom: clamp(56px, 8vw, 84px);
}
main.page-main .section-header {
margin-bottom: clamp(28px, 4vw, 42px);
}
}
@media (max-width: 768px) {
main.page-main :is(.section-desc, .pasan-card-desc, .faq-group-desc, .cases-head-sub, .form-desc, .legal-desc, .page-excerpt) {
line-height: 1.88;
}
main.page-main :is(.btn, .consult-btn, .submit-btn, .cta-btn, .btn-action, .btn-big, .btn-submit-main, .desktop-bottom-cta-btn, .lock-btn) {
min-height: 48px;
padding: 0 20px;
}
}
@media (max-width: 640px) {
main.page-main {
line-height: 1.78;
}
.site-header .menu-toggle span {
width: 14px;
height: 1.6px;
}
main.page-main :is(.hero-desc, .pasan-hero-desc, .contact-hero-desc, .faq-hero-desc, .cases-desc, .loc-desc, .section-desc, .pasan-card-desc, .faq-group-desc, .cases-head-sub, .form-desc, .legal-desc, .page-excerpt) {
max-width: 32ch;
font-size: 16px;
}
main.page-main .section-header {
gap: 12px;
margin-bottom: 32px;
}
main.page-main :is(.form-card, .board-card, .info-card, .legal-card, .profile-card, .diff-card, .service-item, .pasan-section-card, .main-card, .mobile-card, .check-card, .sol-card, .case-card, .review-card, .consult-form-card, .select-card, .trans-item, .info-block, .photo-item, .map-container, .lock-form, .q-box, .a-box, .faq-note, .faq-table-wrap):hover {
transform: none;
box-shadow: var(--ksl-card-shadow-soft);
}
main.page-main :is(.btn, .consult-btn, .submit-btn, .cta-btn, .btn-action, .btn-big, .btn-submit-main, .desktop-bottom-cta-btn, .lock-btn) {
width: 100%;
}
}
@media (prefers-reduced-motion: reduce) {
.fade-section {
opacity: 1 !important;
transform: none !important;
transition: none !important;
}
[data-stagger] > * {
opacity: 1 !important;
transform: none !important;
transition: none !important;
transition-delay: 0ms !important;
}
} @media (max-width: 1024px) and (min-width: 993px) {
body.menu-open::before {
content: "";
position: fixed;
inset: var(--header-h) 0 0;
background: rgba(10, 15, 30, 0.4);
backdrop-filter: blur(4px);
z-index: 999;
}
.site-header .menu-toggle {
min-width: 44px;
min-height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1002;
}
.site-header .gnb {
position: fixed;
top: var(--header-h);
right: -100%;
width: min(100%, 380px);
height: calc(100vh - var(--header-h));
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0;
padding: 18px 0 34px;
overflow-y: auto;
background: var(--bg-card);
color: var(--navy);
border-left: 1px solid var(--border-light);
border-top-left-radius: 18px;
border-bottom-left-radius: 18px;
box-shadow: -18px 0 44px rgba(10, 15, 30, 0.16);
z-index: 1001;
}
.site-header .gnb.open { right: 0; }
.site-header .nav-list {
width: 100%;
height: auto;
gap: 0;
padding-top: 6px;
flex-direction: column;
}
.site-header .nav-item {
width: 100%;
height: auto;
padding: 6px 0;
border-bottom: 1px solid var(--border-subtle);
flex-direction: column;
align-items: flex-start;
}
.site-header .nav-link {
width: calc(100% - 24px);
margin: 0 12px;
padding: 16px 18px;
height: auto;
font-size: 16px;
font-weight: 800;
color: var(--navy);
border-radius: 12px;
}
.site-header .sub-menu {
width: calc(100% - 24px);
margin: 0 12px 10px;
padding: 8px;
border-radius: 12px;
position: static;
box-shadow: none;
border: 1px solid var(--border-subtle);
background: var(--bg-warm);
opacity: 1;
visibility: visible;
transform: none;
display: none;
}
.site-header .nav-item.active .sub-menu,
.site-header .menu-item-has-children.active .sub-menu {
display: block;
}
.site-header .sub-menu a {
margin: 0;
padding: 12px 14px;
font-size: 14px;
line-height: 1.55;
}
.site-header .nav-cta {
width: calc(100% - 48px);
min-height: 48px;
margin: 18px 24px 0;
border-radius: 12px;
justify-content: center;
display: inline-flex;
align-items: center;
}
}:root {
--ds-bg: #f7f5f2;
--ds-surface: #ffffff;
--ds-text: #121318;
--ds-text-muted: #5a6270;
--ds-border: #e5e7eb;
--ds-primary: #111827;
--ds-primary-strong: #030712;
--ds-accent: #b8924a;
--ds-accent-soft: rgba(184, 146, 74, 0.14);
--ds-radius-sm: 8px;
--ds-radius-md: 12px;
--ds-radius-lg: 18px;
--ds-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
--ds-shadow-md: 0 10px 24px rgba(17, 24, 39, 0.08);
--ds-max: 1080px;
}
body {
background: var(--ds-bg);
color: var(--ds-text);
}
body.ksl-page-index {
padding-top: var(--header-h) !important;
}
.page-main {
min-height: calc(100vh - var(--header-h));
}
.container,
.ksl-template-container,
.footer-inner,
.header-inner {
max-width: var(--ds-max);
}
.page-head,
.ksl-page-head {
margin: 0 0 28px;
padding: 20px 0 0;
border-bottom: 1px solid var(--ds-border);
}
.page-title,
.ksl-page-title,
h1,
h2,
h3 {
color: var(--ds-text);
letter-spacing: -0.02em;
}
.page-title,
.ksl-page-title {
margin: 0 0 10px;
font-size: clamp(1.8rem, 2.7vw, 2.45rem);
font-weight: 800;
}
.page-excerpt,
.ksl-page-excerpt,
.wp-content p,
.wp-content li {
color: var(--ds-text-muted);
font-size: 1rem;
}
.wp-content {
background: var(--ds-surface);
border: 1px solid var(--ds-border);
border-radius: var(--ds-radius-lg);
box-shadow: var(--ds-shadow-sm);
padding: 24px;
}
.site-header,
.site-footer {
backdrop-filter: blur(10px);
}
.site-header .nav-link,
.site-header .nav-cta,
.site-footer a,
button,
input,
select,
textarea {
font-family: var(--font-sans);
}
.btn,
button,
.wp-element-button,
.wp-block-button__link,
.cta-btn,
.desktop-right-cta-btn,
.desktop-consult-submit,
.ksl-contact-submit {
border-radius: var(--ds-radius-sm);
transition: all 0.2s ease;
}
.btn,
.wp-element-button,
.wp-block-button__link,
.ksl-contact-submit,
.desktop-consult-submit {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
border: 1px solid var(--ds-primary);
background: var(--ds-primary);
color: #fff;
font-weight: 700;
padding: 11px 16px;
}
.btn:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
.ksl-contact-submit:hover,
.desktop-consult-submit:hover {
background: var(--ds-primary-strong);
border-color: var(--ds-primary-strong);
transform: translateY(-1px);
}
.btn-outline,
.btn-ghost,
.wp-block-button__link.is-style-outline {
background: transparent;
color: var(--ds-primary);
border-color: var(--ds-border);
}
.btn-outline:hover,
.btn-ghost:hover,
.wp-block-button__link.is-style-outline:hover {
background: var(--ds-accent-soft);
border-color: var(--ds-accent);
}
.case-card,
.review-card,
.faq-item,
.pasan-section-card,
.consult-card,
[class*="card"] {
background: var(--ds-surface);
border: 1px solid var(--ds-border);
border-radius: var(--ds-radius-md);
box-shadow: var(--ds-shadow-sm);
}
.case-card:hover,
.review-card:hover,
[class*="card"]:hover {
box-shadow: var(--ds-shadow-md);
}
input,
select,
textarea {
border: 1px solid var(--ds-border);
border-radius: var(--ds-radius-sm);
background: #fff;
color: var(--ds-text);
}
input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
outline: 2px solid var(--ds-accent);
outline-offset: 2px;
}
@media (max-width: 900px) {
.wp-content {
padding: 18px;
}
.page-head,
.ksl-page-head {
margin-bottom: 20px;
}
}:root {
--navy: #0a0f1e;
--navy-mid: #141b2d;
--navy-light: #1e2a3f;
--gold: #b8924a;
--gold-light: #d4b978;
--gold-muted: rgba(184, 146, 74, 0.12);
--text-primary: #1a1a1a;
--text-secondary: #4a4a4a;
--text-muted: #777;
--text-light: #999;
--bg-page: #f8f7f5;
--bg-warm: #f5f3ef;
--bg-card: #ffffff;
--border-light: #e8e5e0;
--border-subtle: #f0ede8;
--header-h: 72px;
--max-width: 1080px;
--font-serif: "Noto Serif KR", "Batang", serif;
--font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
--shadow-md: 0 4px 20px rgba(0,0,0,0.06);
--shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-sans);
color: var(--text-primary);
background-color: var(--bg-page);
line-height: 1.7;
font-size: 16px;
padding-top: var(--header-h);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, li { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; background: none; } .site-header {
background: #fff;
height: var(--header-h);
border-bottom: 1px solid var(--border-light);
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
}
.header-inner {
max-width: var(--max-width);
margin: 0 auto;
height: 100%;
padding: 0 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 36px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
font-family: var(--font-serif);
font-size: 17px;
font-weight: 700;
color: var(--navy);
letter-spacing: -0.01em;
}
.logo-sub { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; font-weight: 500; }
.gnb { display: flex; align-items: center; gap: 28px; height: 100%; }
.nav-list { display: flex; gap: 6px; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
font-size: 15px;
font-weight: 600;
color: var(--text-secondary);
padding: 0 10px;
position: relative;
letter-spacing: -0.01em;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0; left: 10px; right: 10px;
height: 2px;
background: var(--gold);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy); font-weight: 700; }
.sub-menu {
position: absolute;
top: 100%; left: 50%;
transform: translateX(-50%) translateY(8px);
background: #fff;
min-width: 160px;
border-radius: 8px;
box-shadow: var(--shadow-lg);
border: 1px solid var(--border-light);
opacity: 0; visibility: hidden;
transition: all 0.2s ease;
padding: 6px 0;
}
.nav-item:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sub-menu a { display: block; padding: 10px 20px; font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.sub-menu a:hover { background: var(--bg-warm); color: var(--navy); font-weight: 600; }
.nav-cta {
padding: 10px 24px;
background: var(--navy);
color: #fff;
font-size: 13px;
font-weight: 700;
border-radius: 6px;
letter-spacing: 0.02em;
transition: var(--transition);
}
.nav-cta:hover { background: var(--navy-light); }
.menu-toggle { display: none; width: 24px; height: 18px; position: relative; z-index: 1100; }
.menu-toggle span { display: block; width: 100%; height: 1.5px; background: var(--navy); position: absolute; left: 0; transition: 0.3s; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-45deg); }
@media (max-width: 992px) {
.gnb {
position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
background: #fff; flex-direction: column; padding-top: 80px;
transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 1000; align-items: flex-start; gap: 0;
overflow-y: auto;
}
.gnb.open { right: 0; }
.nav-list { flex-direction: column; width: 100%; height: auto; gap: 0; }
.nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border-subtle); }
.nav-link { display: block; width: 100%; padding: 18px 28px; font-size: 16px; color: var(--navy); font-weight: 700; }
.nav-link::after { display: none; }
.sub-menu { position: static; width: 100%; box-shadow: none; border: none; background: var(--bg-warm); transform: none; opacity: 1; visibility: visible; padding: 0; display: none; border-radius: 0; }
.nav-item.active .sub-menu { display: block; padding: 4px 0 8px; }
.sub-menu a { padding: 14px 40px; font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.sub-menu a:hover { color: var(--navy); }
.nav-cta { margin: 24px 28px; width: calc(100% - 56px); text-align: center; padding: 16px; font-size: 15px; border-radius: 8px; }
.menu-toggle { display: block; }
} .pasan-main {
background: var(--bg-page);
color: var(--text-primary);
font-size: 16px;
line-height: 1.7;
padding-bottom: 0;
word-break: keep-all;
}
.inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; } .pasan-hero {
background: #0a0f1e;
color: #fff;
padding: 100px 0 140px;
text-align: center;
position: relative;
overflow: hidden;
}
.pasan-hero::before {
content: '';
position: absolute;
top: -50%; left: -50%;
width: 200%; height: 200%;
background:
repeating-linear-gradient(60deg, transparent 0px, transparent 79px, rgba(184,146,74,0.04) 79px, rgba(184,146,74,0.04) 80px),
repeating-linear-gradient(-60deg, transparent 0px, transparent 79px, rgba(184,146,74,0.04) 79px, rgba(184,146,74,0.04) 80px);
animation: heroMeshDrift 55s linear infinite;
z-index: 0;
pointer-events: none;
}
.pasan-hero::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background:
radial-gradient(ellipse 800px 600px at 75% 20%, rgba(184,146,74,0.08), transparent 70%),
radial-gradient(ellipse 600px 800px at 15% 80%, rgba(184,146,74,0.04), transparent 70%);
animation: heroGlowFloat 20s ease-in-out infinite alternate;
z-index: 0;
pointer-events: none;
}
.pasan-hero .inner { position: relative; z-index: 1; }
@keyframes heroMeshDrift {
from { transform: translate(0, 0); }
to { transform: translate(80px, 46px); }
}
@keyframes heroGlowFloat {
0% { transform: translate(0, 0) scale(1); }
100% { transform: translate(-40px, 20px) scale(1.08); }
}
.pasan-hero-kicker {
font-size: 12px;
font-weight: 600;
color: var(--gold);
letter-spacing: 0.2em;
margin-bottom: 24px;
display: block;
}
.pasan-hero-title {
font-family: var(--font-serif);
font-size: 42px;
font-weight: 700;
margin: 0 0 16px;
line-height: 1.35;
letter-spacing: -0.02em;
}
.pasan-hero-line {
width: 48px;
height: 1px;
background: var(--gold);
margin: 28px auto;
}
.pasan-hero-desc {
font-size: 16px;
color: rgba(255,255,255,0.7);
max-width: 640px;
margin: 0 auto;
font-weight: 400;
line-height: 1.75;
} .pasan-nav-wrapper {
position: sticky;
top: var(--header-h);
z-index: 100;
margin-top: -52px;
margin-bottom: 64px;
}
.pasan-nav {
background: rgba(255, 255, 255, 0.97);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border-light);
padding: 0;
display: flex;
align-items: stretch;
width: 100%;
max-width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.pasan-nav::-webkit-scrollbar { display: none; }
.pasan-nav-link {
flex: 1 0 auto;
text-align: center;
padding: 18px 32px;
font-size: 14px;
font-weight: 600;
color: var(--text-muted);
text-decoration: none;
white-space: nowrap;
transition: var(--transition);
position: relative;
letter-spacing: 0.01em;
}
.pasan-nav-link::after {
content: '';
position: absolute;
bottom: 0; left: 50%; right: 50%;
height: 2px;
background: var(--gold);
transition: all 0.3s ease;
}
.pasan-nav-link:hover { color: var(--text-primary); }
.pasan-nav-link.active {
color: var(--navy);
font-weight: 700;
}
.pasan-nav-link.active::after { left: 24px; right: 24px; } .pasan-section-card {
background: var(--bg-card);
padding: 64px 56px;
margin-bottom: 2px;
scroll-margin-top: calc(var(--header-h) + 60px);
border-top: 1px solid var(--border-subtle);
position: relative;
border-radius: var(--radius-lg);
}
.pasan-section-card:first-child { border-top: none; }
.pasan-card-header { margin-bottom: 48px; }
.pasan-card-kicker {
font-size: 11px;
font-weight: 700;
color: var(--gold);
letter-spacing: 0.15em;
margin-bottom: 12px;
display: block;
}
.pasan-card-title {
font-family: var(--font-serif);
font-size: 28px;
font-weight: 700;
color: var(--navy);
margin: 0;
letter-spacing: -0.02em;
line-height: 1.4;
}
.pasan-card-desc {
font-size: 15px;
color: var(--text-muted);
margin-top: 16px;
max-width: 680px;
line-height: 1.75;
} .overview-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
margin-bottom: 32px;
}
.overview-item {
padding: 32px 28px;
border-right: 1px solid var(--border-subtle);
position: relative;
}
.overview-item:first-child { padding-left: 0; }
.overview-item:last-child { border-right: none; padding-right: 0; }
.overview-label {
font-family: var(--font-serif);
font-size: 16px;
font-weight: 700;
color: var(--navy);
margin-bottom: 12px;
display: block;
}
.overview-text { font-size: 14px; color: var(--text-secondary); line-height: 1.75; } .highlight-box {
background: var(--bg-warm);
border-left: 3px solid var(--gold);
color: var(--text-secondary);
padding: 24px 28px;
font-size: 14px;
line-height: 1.75;
border-radius: var(--radius-lg);
} .acc-group { display: flex; flex-direction: column; gap: 0; }
.acc-item { border-bottom: 1px solid var(--border-subtle); }
.acc-item:last-child { border-bottom: none; }
.acc-btn {
width: 100%;
padding: 22px 4px;
background: transparent;
border: none;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
transition: var(--transition);
text-align: left;
}
.acc-btn:hover { background: var(--bg-warm); margin: 0 -4px; padding: 22px 8px; width: calc(100% + 8px); }
.acc-btn-label {
display: flex;
align-items: center;
gap: 16px;
font-size: 16px;
font-weight: 700;
color: var(--navy);
}
.acc-badge {
font-size: 10px;
font-weight: 700;
color: var(--gold);
background: var(--gold-muted);
padding: 4px 10px;
border-radius: var(--radius-sm);
min-width: 48px;
text-align: center;
letter-spacing: 0.05em;
}
.acc-icon {
color: var(--text-light);
font-size: 12px;
transition: transform 0.3s ease;
flex-shrink: 0;
}
.acc-btn[aria-expanded="true"] .acc-icon { transform: rotate(180deg); color: var(--gold); }
.acc-panel { display: none; }
.acc-panel-inner {
padding: 4px 0 28px 0;
margin-left: 0;
}
.corp-list { margin: 0; padding-left: 20px; color: var(--text-secondary); font-size: 15px; }
.corp-list li { margin-bottom: 12px; line-height: 1.7; }
.corp-list li:last-child { margin-bottom: 0; }
.corp-list li strong { color: var(--navy); font-weight: 700; } .process-timeline { position: relative; padding-left: 0; }
.process-timeline::before {
content: '';
position: absolute;
left: 24px;
top: 40px; bottom: 40px;
width: 1px;
background: var(--border-light);
z-index: 0;
}
.process-step {
position: relative;
margin-bottom: 0;
padding: 28px 0 28px 72px;
z-index: 1;
border-bottom: 1px solid var(--border-subtle);
}
.process-step:last-child { margin-bottom: 0; border-bottom: none; }
.step-marker {
position: absolute;
left: 0; top: 28px;
width: 48px; height: 48px;
background: var(--bg-card);
border: 1px solid var(--border-light);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-serif);
color: var(--navy);
font-weight: 700;
font-size: 16px;
z-index: 2;
}
.process-step:hover .step-marker {
border-color: var(--gold);
background: var(--gold-muted);
}
.step-content { transition: var(--transition); }
.step-title {
font-family: var(--font-serif);
font-size: 17px;
font-weight: 700;
color: var(--navy);
margin: 0 0 4px;
}
.step-sub {
font-size: 12px;
color: var(--gold);
font-weight: 600;
margin-bottom: 10px;
display: block;
letter-spacing: 0.02em;
}
.step-desc { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.75; } .corp-table-wrapper { margin-top: 20px; overflow-x: auto; border-top: 1px solid var(--border-light); }
.corp-table { width: 100%; border-collapse: collapse; background: var(--bg-card); font-size: 14px; }
.corp-table th, .corp-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-subtle); text-align: left; }
.corp-table th { background: var(--bg-warm); color: var(--navy); font-weight: 700; white-space: nowrap; font-family: var(--font-serif); }
.corp-table tr:last-child td { border-bottom: none; } .consult-card {
background: var(--navy);
color: #fff;
text-align: center;
padding: 80px 40px;
border-top: none;
}
.consult-kicker {
font-size: 11px;
font-weight: 700;
color: var(--gold);
letter-spacing: 0.15em;
margin-bottom: 16px;
display: block;
}
.consult-title {
font-family: var(--font-serif);
font-size: 26px;
font-weight: 700;
color: #fff;
margin-bottom: 16px;
letter-spacing: -0.02em;
}
.consult-desc {
color: rgba(255,255,255,0.6);
font-size: 15px;
max-width: 560px;
margin: 0 auto;
line-height: 1.75;
}
.btn-group { margin-top: 40px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
padding: 15px 36px;
font-weight: 700;
font-size: 14px;
text-decoration: none;
transition: var(--transition);
display: inline-flex;
align-items: center;
gap: 8px;
letter-spacing: 0.01em;
border-radius: var(--radius-md);
}
.btn-primary {
background: var(--gold);
color: var(--navy);
border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost {
background: transparent;
border: 1px solid rgba(255,255,255,0.25);
color: rgba(255,255,255,0.85);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; } @media (max-width: 900px) {
.overview-grid { grid-template-columns: 1fr; gap: 0; }
.overview-item {
border-right: none;
border-bottom: 1px solid var(--border-subtle);
padding: 24px 0;
}
.overview-item:first-child { padding-left: 0; }
.overview-item:last-child { border-bottom: none; padding-right: 0; }
}
@media (max-width: 768px) {
:root { --header-h: 64px; }
body { font-size: 16px; }
.pasan-hero { padding: 72px 0 100px; }
.pasan-hero-title { font-size: 30px; }
.pasan-hero-desc { font-size: 16px; }
.pasan-nav-wrapper {
margin-top: 0;
margin-bottom: 0;
top: var(--header-h);
}
.pasan-nav {
border-radius: 0;
padding: 0;
border-bottom: 1px solid var(--border-light);
background: #fff;
}
.pasan-nav-link {
padding: 16px 12px;
font-size: 13px;
flex: 1 1 0;
}
.pasan-nav-link.active::after { left: 12px; right: 12px; }
.pasan-section-card {
padding: 40px 24px;
}
.pasan-card-title { font-size: 24px; }
.pasan-card-header { margin-bottom: 32px; }
.process-timeline::before { left: 19px; }
.process-step { padding-left: 56px; padding-top: 24px; padding-bottom: 24px; }
.step-marker { width: 40px; height: 40px; font-size: 14px; top: 24px; }
.consult-card { padding: 56px 24px; }
.consult-title { font-size: 22px; }
.btn { width: 100%; justify-content: center; padding: 16px 24px; }
.btn-group { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; margin-top: 32px; }
.acc-btn-label { font-size: 16px; gap: 12px; }
.highlight-box { padding: 20px 22px; }
}
@media (max-width: 640px) {
.pasan-hero-title { font-size: 26px; }
.pasan-section-card { padding: 32px 20px; }
.acc-btn { padding: 18px 0; }
.acc-btn:hover { margin: 0; padding: 18px 4px; width: calc(100% + 0px); }
}
@media (max-width: 992px) {
.gnb { z-index: 10000; }
.menu-toggle { z-index: 10001; }
} .skip-link {
position: absolute;
top: -100px; left: 50%;
transform: translateX(-50%);
background: var(--navy);
color: #fff;
padding: 12px 24px;
z-index: 10000;
font-size: 14px;
font-weight: 600;
}
.skip-link:focus { top: 8px; } .fade-section {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-section.visible {
opacity: 1;
transform: translateY(0);
} .site-footer {
background: #050a14;
color: #d0d0d0;
padding: 64px 24px 40px;
border-top: 1px solid rgba(255,255,255,0.04);
font-family: var(--font-sans);
}
.footer-inner {
max-width: var(--max-width);
margin: 0 auto;
display: grid;
grid-template-columns: 1.3fr 0.8fr 0.9fr;
gap: 48px;
align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.footer-logo-text { display: flex; flex-direction: column; gap: 2px; }
.footer-logo-main {
font-family: var(--font-serif);
font-size: 16px;
font-weight: 700;
color: #f0f0f0;
letter-spacing: -0.01em;
}
.footer-logo-sub { font-size: 11px; color: #888; letter-spacing: 0.04em; }
.footer-desc { font-size: 13px; line-height: 1.75; color: #888; }
.footer-contact { font-size: 13px; line-height: 2; color: #aaa; }
.footer-contact .label { color: #666; font-weight: 600; margin-right: 8px; font-size: 12px; letter-spacing: 0.02em; }
.footer-col h4 {
font-family: var(--font-serif);
font-size: 14px;
font-weight: 700;
margin: 0 0 16px;
color: #e0e0e0;
}
.footer-links { display: grid; gap: 10px; font-size: 13px; }
.footer-links a { color: #999; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.footer-quick a {
display: block;
padding: 10px 12px;
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.06);
color: #aaa;
text-decoration: none;
font-size: 12px;
font-weight: 600;
transition: var(--transition);
}
.footer-quick a:hover { border-color: rgba(184,146,74,0.3); color: var(--gold); }
.footer-line { max-width: var(--max-width); margin: 40px auto 20px; height: 1px; background: rgba(255,255,255,0.06); }
.footer-notice {
max-width: var(--max-width);
margin: 0 auto;
font-size: 11px;
line-height: 1.8;
color: #666;
}
.footer-bottom {
max-width: var(--max-width);
margin: 16px auto 0;
display: flex; flex-wrap: wrap; gap: 10px;
justify-content: space-between;
align-items: center;
font-size: 11px; color: #555;
}
@media (max-width: 900px) {
.footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
.site-footer { padding: 48px 20px 32px; }
.footer-inner { grid-template-columns: 1fr; gap: 28px; }
.footer-quick { grid-template-columns: 1fr 1fr; }
.footer-bottom { flex-direction: column; align-items: flex-start; }
} .desktop-right-cta {
position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
z-index: 9998; display: none;
}
.desktop-right-cta-stack { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.desktop-right-cta-btn {
display: flex; align-items: center; gap: 12px;
padding: 14px 16px;
background: rgba(10,15,30,0.92);
color: #e8e8e8;
text-decoration: none;
box-shadow: 0 8px 32px rgba(0,0,0,0.2);
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius-md);
transition: var(--transition);
min-width: 180px;
backdrop-filter: blur(12px);
}
.desktop-right-cta-btn.primary {
background: var(--gold);
color: var(--navy);
border-color: var(--gold);
}
.desktop-right-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.desktop-right-cta-btn i { font-size: 16px; width: 20px; text-align: center; opacity: 0.9; }
.desktop-right-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.desktop-right-cta-text .main { font-weight: 700; font-size: 13px; line-height: 1.2; white-space: nowrap; }
.desktop-right-cta-text .sub { font-weight: 500; font-size: 11px; opacity: 0.6; white-space: nowrap; }
.desktop-right-cta-text .sub.mono { font-feature-settings: "tnum"; letter-spacing: 0.02em; }
.desktop-right-cta-details { position: relative; }
.desktop-right-cta-details > summary { list-style: none; }
.desktop-right-cta-details > summary::-webkit-details-marker { display: none; }
.desktop-right-cta-arrow { margin-left: auto; font-size: 12px; opacity: 0.6; transition: transform 0.2s ease; }
.desktop-right-cta-details[open] .desktop-right-cta-arrow { transform: rotate(180deg); }
.desktop-right-cta-details[open] > summary.desktop-right-cta-btn { border-color: rgba(184,146,74,0.4); }
.desktop-right-cta-dropdown {
position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
width: 220px; background: #fff;
box-shadow: 0 16px 48px rgba(0,0,0,0.15);
border: 1px solid var(--border-light);
border-radius: var(--radius-lg);
overflow: hidden; padding: 6px;
}
.desktop-right-cta-dropdown a {
display: flex; align-items: center; gap: 10px;
padding: 12px 14px;
font-weight: 600; font-size: 13px; color: var(--text-primary);
text-decoration: none; transition: var(--transition);
}
.desktop-right-cta-dropdown a:hover { background: var(--bg-warm); }
.desktop-right-cta-chip {
width: 22px; height: 22px;
display: inline-flex; align-items: center; justify-content: center;
background: var(--navy); color: var(--gold);
font-size: 11px; font-weight: 700; flex-shrink: 0;
border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
.desktop-right-cta-btn, .desktop-right-cta-arrow, .fade-section { transition: none !important; }
.fade-section { opacity: 1; transform: none; }
.pasan-hero::before, .pasan-hero::after { animation: none !important; }
}
@media (min-width: 993px) {
.desktop-right-cta { display: block; }
}  .inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; position: relative; }
.section-py { padding: 100px 0; }
.about-hero { background: #0a0f1e; color: #fff; padding: 140px 0 180px; text-align: center; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: repeating-linear-gradient(60deg, transparent 0px, transparent 79px, rgba(184,146,74,0.04) 79px, rgba(184,146,74,0.04) 80px), repeating-linear-gradient(-60deg, transparent 0px, transparent 79px, rgba(184,146,74,0.04) 79px, rgba(184,146,74,0.04) 80px); animation: heroMeshDrift 55s linear infinite; z-index: 0; pointer-events: none; }
.about-hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 800px 600px at 75% 20%, rgba(184,146,74,0.08), transparent 70%), radial-gradient(ellipse 600px 800px at 15% 80%, rgba(184,146,74,0.04), transparent 70%); animation: heroGlowFloat 20s ease-in-out infinite alternate; z-index: 0; pointer-events: none; }
.about-hero .inner { position: relative; z-index: 1; }
@keyframes heroMeshDrift { from { transform: translate(0, 0); } to { transform: translate(80px, 46px); } }
@keyframes heroGlowFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-40px, 20px) scale(1.08); } }
.hero-badge { display: block; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 24px; }
.hero-title { font-family: var(--font-serif); font-size: 46px; font-weight: 700; margin: 0 0 20px; line-height: 1.35; letter-spacing: -0.02em; }
.hero-line { width: 48px; height: 1px; background: var(--gold); margin: 28px auto; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto; font-weight: 400; line-height: 1.75; }
.profile-section { margin-top: -100px; padding-bottom: 60px; position: relative; z-index: 10; }
.profile-card { background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-float); display: grid; grid-template-columns: 420px 1fr; overflow: hidden; border: 1px solid var(--border-light); }
.profile-img-area { position: relative; background: var(--bg-warm); min-height: clamp(320px, 55vw, 600px); }
.profile-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.profile-tag-overlay { position: absolute; bottom: 30px; left: 30px; right: 30px; background: rgba(10, 15, 30, 0.95); color: white; padding: 20px; border-left: 3px solid var(--gold); }
.tag-name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; display: block; margin-bottom: 4px; }
.tag-role { font-size: 13px; opacity: 0.9; font-weight: 400; color: var(--gold); display: block; letter-spacing: 0.02em; }
.profile-content { padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.quote-wrap { margin-bottom: 30px; position: relative; }
.quote-icon { font-size: 50px; color: var(--gold-muted); position: absolute; top: -20px; left: -20px; font-family: serif; }
.quote-text { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1.5; position: relative; z-index: 2; word-break: keep-all; }
.intro-text { font-size: clamp(16px, 0.25vw + 15px, 18px); color: var(--text-secondary); margin-bottom: 40px; line-height: 1.95; }
.intro-text p { margin-bottom: 16px; }
.signature-area { margin-top: auto; padding-top: 30px; border-top: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.sig-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.sig-font { font-family: cursive, sans-serif; font-size: 26px; color: var(--navy); opacity: 0.75; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--bg-card); padding: 40px; margin-bottom: 80px; border: 1px solid var(--border-light); border-top: none; border-radius: var(--radius-lg); }
.stat-item { text-align: center; border-right: 1px solid var(--border-subtle); }
.stat-item:last-child { border-right: none; }
.stat-val { display: block; font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.stat-key { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin: 0 auto 60px; }
.section-kicker { color: var(--gold); font-weight: 700; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.section-heading { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--navy); margin: 0 0 16px; letter-spacing: -0.02em; }
.section-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.diff-card { background: var(--bg-card); padding: 40px 32px; border: 1px solid var(--border-subtle); transition: var(--transition); text-align: left; position: relative; border-radius: var(--radius-lg); }
.diff-card:hover { border-color: var(--gold); }
.diff-icon { width: 48px; height: 48px; margin-bottom: 24px; background: var(--bg-warm); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--navy); transition: var(--transition); }
.diff-card:hover .diff-icon { background: var(--gold-muted); color: var(--gold); }
.diff-title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; margin-bottom: 14px; color: var(--navy); }
.diff-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.75; word-break: keep-all; }
.history-section { background: var(--bg-warm); }
.timeline-wrap { position: relative; max-width: 800px; margin: 0 auto; padding: 40px 0; }
.timeline-wrap::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--border-light); transform: translateX(-50%); }
.timeline-item { position: relative; width: 50%; padding: 20px 40px; box-sizing: border-box; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-item::after { content: ''; position: absolute; top: 30px; width: 12px; height: 12px; background: var(--bg-card); border: 2px solid var(--gold); border-radius: 50%; z-index: 2; }
.timeline-item:nth-child(odd)::after { right: -6px; }
.timeline-item:nth-child(even)::after { left: -6px; }
.t-year { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--gold); display: block; margin-bottom: 8px; }
.t-title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.t-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.service-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); }
.s-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.s-content h4 { font-family: var(--font-serif); font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--navy); }
.s-content p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.7; }
.cta-box { background: var(--navy); padding: 80px 40px; text-align: center; color: white; position: relative; overflow: hidden; margin-top: 2px; }
.cta-box::after { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(184,146,74,0.12), transparent 70%); pointer-events: none; }
.cta-box h2 { font-family: var(--font-serif); position: relative; z-index: 2; font-size: 28px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-box p { position: relative; z-index: 2; font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--navy); padding: 16px 36px; font-weight: 700; font-size: 15px; transition: var(--transition); position: relative; z-index: 2; border: 1px solid var(--gold); }
.cta-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }
@media (max-width: 900px) {
.profile-card { grid-template-columns: 1fr; }
.profile-img-area { min-height: clamp(280px, 62vw, 420px); }
.stats-bar { grid-template-columns: 1fr 1fr; gap: 30px; }
.stat-item { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-bottom: 20px; }
.diff-grid, .service-list { grid-template-columns: 1fr; }
.timeline-wrap::before { left: 20px; transform: none; }
.timeline-item { width: 100%; left: 0 !important; padding: 18px 0 18px 54px; text-align: left !important; }
.timeline-item::after { left: 12px !important; right: auto !important; }
}
@media (max-width: 768px) {
:root { --header-h: 64px; }
body { font-size: 16px; }
.section-py { padding: 72px 0; }
.section-heading { font-size: 26px; }
.hero-title { font-size: 30px; }
.hero-desc { font-size: 16px; }
.quote-text { font-size: 22px; }
.profile-content { padding: 40px 24px; }
.cta-box { padding: 56px 24px; margin-top: 0; }
.cta-box h2 { font-size: 24px; }
.diff-card { padding: 28px 20px; }
.service-item { padding: 20px; gap: 14px; }
}