/* ============================================================
   노무법인 케이앤케이 – 메인 스타일시트
   Color Palette:
     Navy Deep:   #0d1f3c
     Navy:        #1a3358
     Navy Light:  #1e3d6e
     Gold:        #b8943a
     Gold Light:  #d4aa5a
     Charcoal:    #2c2c2c
     Light Gray:  #f5f5f2
     White:       #ffffff
============================================================ */

/* ─── CSS Variables ─── */
:root {
    --navy-deep:  #0d1f3c;
    --navy:       #1a3358;
    --navy-light: #1e3d6e;
    --gold:       #b8943a;
    --gold-light: #d4aa5a;
    --charcoal:   #2c2c2c;
    --text-body:  #3d3d3d;
    --text-light: #666666;
    --bg-light:   #f5f5f2;
    --white:      #ffffff;
    --border:     #e0ddd6;
    --shadow-sm:  0 2px 12px rgba(13,31,60,0.08);
    --shadow-md:  0 6px 28px rgba(13,31,60,0.14);
    --shadow-lg:  0 12px 48px rgba(13,31,60,0.2);
    --radius:     6px;
    --transition: all 0.32s ease;
    --font-serif: 'Noto Serif KR', Georgia, serif;
    --font-sans:  'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.section-padding { padding: 96px 0; }
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }

/* ─── Section Labels & Titles ─── */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(184,148,58,0.1);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.35;
    margin-bottom: 16px;
}

.section-title strong { color: var(--navy-light); }

.section-sub {
    font-size: 1.02rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header { margin-bottom: 60px; }

/* ============================================================
   HEADER
============================================================ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: transparent;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    background: rgba(13,31,60,0.97);
    border-bottom: 1px solid rgba(184,148,58,0.25);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}

.logo-kr {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.logo-brand {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}

.logo-en {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
    display: none;
}

@media (min-width: 900px) { .logo-en { display: inline; } }

.gnb {
    display: flex;
    gap: 36px;
    align-items: center;
}

.gnb a {
    font-size: 0.93rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.25s;
}

.gnb a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold-light);
    transition: width 0.28s ease;
}

.gnb a:hover { color: var(--gold-light); }
.gnb a:hover::after { width: 100%; }

.btn-kakao-header {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FEE500;
    color: #3C1E1E;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-kakao-header:hover {
    background: #ffd900;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(254,229,0,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 860px) {
    .gnb, .btn-kakao-header { display: none; }
    .hamburger { display: flex; }
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy-deep);
    z-index: 998;
    padding: 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(184,148,58,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    padding: 14px 8px;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--gold-light); }

.mobile-nav .kakao-mobile {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FEE500;
    color: #3C1E1E;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 4px;
    justify-content: center;
    border-bottom: none;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://www.genspark.ai/api/files/s/wPVYXR25?cache_control=3600');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0d1f3c;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(9,18,35,0.88) 0%,
        rgba(13,31,60,0.78) 50%,
        rgba(13,31,60,0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold-light);
    background: rgba(184,148,58,0.15);
    border: 1px solid rgba(184,148,58,0.35);
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease 0.3s forwards;
}

.badge-dot {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease 0.55s forwards;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-title-main {
    display: block;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: normal;
    color: var(--gold-light);
    display: block;
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(184,148,58,0.3);
    width: fit-content;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.75s forwards;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.95s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: var(--radius);
    border: 2px solid var(--gold);
    transition: var(--transition);
    letter-spacing: 0.04em;
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184,148,58,0.45);
}

.btn-kakao {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #FEE500;
    color: #3C1E1E;
    font-size: 0.97rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--radius);
    border: 2px solid #FEE500;
    transition: var(--transition);
}

.btn-kakao:hover {
    background: #ffd900;
    border-color: #ffd900;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(254,229,0,0.45);
}

.hero-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.15s forwards;
}

.hero-info-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.hero-info-bar span i { color: var(--gold); }

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.5s forwards;
    z-index: 2;
}

.hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(184,148,58,0.7));
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll-hint p {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
    background: var(--navy-deep);
    padding: 40px 0;
    border-bottom: 1px solid rgba(184,148,58,0.2);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.trust-item {
    text-align: center;
    padding: 12px 40px;
    flex: 1;
    min-width: 160px;
}

.trust-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-item strong span {
    font-size: 1rem;
    font-weight: 500;
}

.trust-item p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .trust-divider { display: none; }
    .trust-item { min-width: 48%; }
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--white); }

/* 새 레이아웃 – 전체 너비 텍스트 중심 */
.about-full { max-width: 900px; margin: 0 auto; }

.about-header { margin-bottom: 40px; }

.about-profile-block {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
    border-radius: 12px;
    padding: 36px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.about-profile-block::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(184,148,58,0.14), transparent 70%);
    pointer-events: none;
}

.profile-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.profile-icon-box > i {
    width: 80px;
    height: 80px;
    background: rgba(184,148,58,0.18);
    border: 2px solid rgba(184,148,58,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
}

.profile-title-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.08em;
}

.profile-cert {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--gold-light);
    background: rgba(184,148,58,0.15);
    border: 1px solid rgba(184,148,58,0.3);
    padding: 3px 10px;
    border-radius: 20px;
}

.about-desc-wrap {
    position: relative;
    z-index: 1;
    flex: 1;
}

.about-desc-wrap .about-desc {
    color: rgba(255,255,255,0.82);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 12px;
}

.about-desc-wrap .about-desc strong { color: var(--gold-light); }

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

@media (max-width: 860px) {
    .about-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .about-info-grid { grid-template-columns: 1fr 1fr; }
    .about-profile-block { flex-direction: column; align-items: center; text-align: center; padding: 28px 24px; }
    .about-desc-wrap .about-desc { text-align: left; }
}

.about-info-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    transition: var(--transition);
}

.about-info-card:hover {
    border-color: rgba(184,148,58,0.4);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.about-info-card > i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.about-info-card h4 {
    font-family: var(--font-serif);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 6px;
}

.about-info-card p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin: 20px 0;
    border-radius: 2px;
}

.about-desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 14px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.about-tags li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    background: rgba(26,51,88,0.07);
    padding: 7px 14px;
    border-radius: 30px;
    border: 1px solid rgba(26,51,88,0.12);
}

.about-tags li i { color: var(--gold); font-size: 0.8rem; }

.about-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border: 1.5px solid var(--border);
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.contact-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.contact-chip i { color: var(--gold); }

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px 30px;
    transition: border-color 0.32s ease, box-shadow 0.32s ease, opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card.visible:hover {
    transform: translateY(-4px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    transition: height 0.35s ease;
    border-radius: 4px 0 0 4px;
}

.service-card:hover {
    border-color: rgba(184,148,58,0.3);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before { height: 100%; }

.service-icon {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 18px;
}

.service-list {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding: 5px 0;
    padding-left: 14px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ============================================================
   WHY K&K
============================================================ */
.why { background: var(--white); }

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

@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
    display: flex;
    gap: 24px;
    padding: 32px 30px;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card.visible:hover {
    border-color: rgba(184,148,58,0.35);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.why-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(184,148,58,0.18);
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    transition: color 0.3s;
}

.why-card:hover .why-num { color: rgba(184,148,58,0.45); }

.why-content h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-content h3 i { color: var(--gold); font-size: 0.95rem; }

.why-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(184,148,58,0.12), transparent 70%);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
}

.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--radius);
    border: 2px solid var(--gold);
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.btn-cta-call:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(184,148,58,0.5);
}

.btn-cta-kakao {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #FEE500;
    color: #3C1E1E;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 26px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-cta-kakao:hover {
    background: #ffd900;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(254,229,0,0.45);
}

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--bg-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-inner {
    background: var(--navy-deep);
    border-radius: 12px;
    padding: 44px 38px;
    color: var(--white);
    height: 100%;
}

.contact-info-inner h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.contact-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.contact-items { margin-bottom: 36px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-item:last-child { border-bottom: none; }

.ci-icon {
    width: 38px; height: 38px;
    background: rgba(184,148,58,0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ci-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ci-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ci-value {
    font-size: 0.96rem;
    color: var(--white);
    font-weight: 500;
    transition: color 0.2s;
}

a.ci-value:hover { color: var(--gold-light); }

.kakao-channel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FEE500;
    color: #3C1E1E;
    font-size: 0.96rem;
    font-weight: 700;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
}

.kakao-channel-btn:hover {
    background: #ffd900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254,229,0,0.4);
}

.channel-name {
    font-size: 0.78rem;
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 12px;
    padding: 44px 38px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 6px;
}

.form-sub {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

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

@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.93rem;
    color: var(--text-body);
    background: #fafaf8;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26,51,88,0.1);
    background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.form-agree input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--navy);
    cursor: pointer;
    flex-shrink: 0;
}

.form-agree label {
    font-size: 0.84rem;
    color: var(--text-light);
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 30px;
}

.form-success.show { display: block; }

.success-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy-deep);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================================
   MAP
============================================================ */
.map-section {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.map-header i {
    font-size: 1.5rem;
    color: var(--gold);
}

.map-header strong {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-deep);
    display: block;
    margin-bottom: 3px;
}

.map-header span {
    font-size: 0.88rem;
    color: var(--text-light);
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
}

.footer-logo .logo-kr {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-logo .logo-brand {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-kakao a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FEE500;
    color: #3C1E1E;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.footer-kakao a:hover {
    background: #ffd900;
    transform: translateY(-1px);
}

.footer-info h4,
.footer-services h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.83rem;
    margin-bottom: 9px;
    line-height: 1.6;
}

.footer-info p i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

.footer-services ul li {
    font-size: 0.83rem;
    padding: 6px 0;
    border-bottom: 1px dotted rgba(255,255,255,0.07);
    padding-left: 12px;
    position: relative;
}

.footer-services ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
}

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.floating-buttons {
    position: fixed;
    right: 24px;
    bottom: 30px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.fab-kakao,
.fab-phone,
.fab-top {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
}

.fab-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.fab-kakao:hover {
    background: #ffd900;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(254,229,0,0.5);
}

.fab-phone {
    background: var(--gold);
    color: var(--white);
}

.fab-phone:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(184,148,58,0.5);
}

.fab-top {
    background: var(--navy);
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.fab-top.show {
    opacity: 1;
    pointer-events: all;
}

.fab-top:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13,31,60,0.4);
}

/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */
@media (max-width: 640px) {
    .section-padding { padding: 64px 0; }
    .hero-content { padding: 120px 0 60px; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-kakao { width: 100%; justify-content: center; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-btns { justify-content: center; width: 100%; }
    .btn-cta-call, .btn-cta-kakao { width: 100%; justify-content: center; }
    .contact-form-wrap, .contact-info-inner { padding: 32px 24px; }
    .floating-buttons { right: 14px; bottom: 20px; }
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 960px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.32s ease, box-shadow 0.32s ease, opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 22px;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(184,148,58,0.12);
    line-height: 1;
    font-weight: 900;
}

.review-card.visible:hover {
    border-color: rgba(184,148,58,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.85;
    flex: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
    color: var(--gold-light);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 2px;
}

.review-author span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ─── Scroll Animation Base ─── */
.scroll-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}
