@charset "utf-8";

:root {
    --kh-primary: #101824;
    --kh-secondary: #1f2937;
    --kh-deep: #080d14;
    --kh-gold: #b08a3c;
    --kh-gold-light: #d7bd78;
    --kh-bg: #f7f3ea;
    --kh-bg-soft: #fbfaf7;
    --kh-white: #ffffff;
    --kh-text: #222222;
    --kh-muted: #6b7280;
    --kh-border: rgba(17, 24, 39, 0.1);
    --kh-shadow: 0 20px 54px rgba(17, 24, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
    color: var(--kh-text);
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
    background: var(--kh-bg-soft);
    line-height: 1.65;
}

body {
    min-width: 320px;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.sound_only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.kh-inner {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.kh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    border-bottom: 1px solid rgba(17, 24, 39, 0.1);
    backdrop-filter: blur(14px);
}

.kh-topbar {
    background: #101824;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
}

.kh-topbar-inner {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.kh-topbar p {
    margin: 0;
}

.kh-topbar a {
    color: var(--kh-gold-light);
    font-weight: 800;
}

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

.kh-logo {
    margin: 0;
    flex: 0 0 auto;
}

.kh-logo a {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kh-logo {
    margin: 0;
    flex: 0 0 auto;
}

.kh-logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.kh-logo-image {
    width: 280px;
    height: auto;
    display: block;
}

.kh-logo-subtitle {
    margin-top: 6px;
    margin-left: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #d7bd78;
    letter-spacing: 0.18em;
}

.kh-gnb {
    margin-left: auto;
}

.kh-gnb > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.kh-gnb > ul > li {
    position: relative;
}

.kh-gnb > ul > li > a {
    display: flex;
    align-items: center;
    height: 84px;
    padding: 0 15px;
    color: #18202c;
    font-weight: 800;
    font-size: 1rem;
}

.kh-gnb > ul > li:hover > a {
    color: var(--kh-gold);
}

.kh-gnb ul ul {
    position: absolute;
    left: 50%;
    top: 84px;
    min-width: 180px;
    transform: translateX(-50%) translateY(10px);
    padding: 12px;
    background: #ffffff;
    color: #111827;
    border: 1px solid rgba(17, 24, 39, 0.1);
    box-shadow: var(--kh-shadow);
    opacity: 0;
    visibility: hidden;
    transition: 0.22s;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.kh-gnb li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.kh-gnb ul ul a {
    display: block;
    padding: 10px 12px;
    color: #222222;
    font-size: 0.95rem;
}

.kh-gnb ul ul a:hover {
    background: #f5f0e6;
    color: #7a5b20;
}

.kh-header-call {
    display: flex;
    min-width: 138px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding-left: 20px;
    border-left: 1px solid rgba(17, 24, 39, 0.12);
}

.kh-header-call span {
    font-size: 0.72rem;
    color: var(--kh-muted);
}

.kh-header-call strong {
    color: var(--kh-gold);
    font-size: 1.15rem;
    line-height: 1.2;
}

.kh-mobile-btn {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(17, 24, 39, 0.18);
    background: #ffffff;
}

.kh-mobile-btn span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #111827;
}

.kh-container {
    min-height: 60vh;
    background: #fafafa;
}

.kh-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 720px;
    min-height: 560px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f3eee4;
    color: #ffffff;
    overflow: hidden;
}

.kh-hero .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.kh-hero .swiper-slide {
    width: 100%;
    height: 100%;
}

.kh-hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center right;
}

.kh-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(8, 13, 20, 0.82) 0%,
        rgba(16, 24, 36, 0.72) 35%,
        rgba(16, 24, 36, 0.25) 66%,
        rgba(255, 255, 255, 0.06) 100%
    );
}

.kh-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 75% 45%, rgba(215, 189, 120, 0.24), transparent 32%);
}

.kh-hero-01 {
    background-image: url('../new_img/main_visual_01.jpg');
}

.kh-hero-02 {
    background-image: url('../new_img/main_visual_02.jpg');
}

.kh-hero-03 {
    background-image: url('../new_img/main_visual_03.jpg');
}

.kh-hero-04 {
    background-image: url('../new_img/main_visual_04.jpg');
}

.kh-hero-05 {
    background-image: url('../new_img/main_visual_05.jpg');
}

.kh-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    margin-top:140px;
}

.kh-hero-content span {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--kh-gold-light);
    font-weight: 900;
    letter-spacing: 0.22em;
    font-size: 0.86rem;
}

.kh-hero-content h2 {
    max-width: 880px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1.12;
    letter-spacing: -0.07em;
    font-weight: 800;
    word-break: auto-phrase;
}

.kh-hero-content p {
    max-width: 650px;
    margin: 0 0 36px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
    line-height: 1.8;
}

.kh-hero-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 30px;
    border: 1px solid rgba(215, 189, 120, 0.72);
    background: rgba(176, 138, 60, 0.9);
    color: #ffffff;
    font-weight: 900;
}

.kh-hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.45;
}

.kh-hero .swiper-pagination-bullet-active {
    background: var(--kh-gold-light);
    opacity: 1;
}

.kh-hero .swiper-button-prev,
.kh-hero .swiper-button-next {
    color: rgba(255, 255, 255, 0.72);
}

.kh-section {
    padding: 110px 0;
    background: #ffffff;
}

.kh-section:nth-of-type(even) {
    background: #fafafa;
}

.kh-section-title {
    margin-bottom: 46px;
    text-align: center;
}

.kh-section-title span,
.kh-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--kh-gold);
    font-weight: 900;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
}

.kh-section-title h2,
.kh-copy h2,
.kh-process h2,
.kh-cta h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 3vw, 3.15rem);
    line-height: 1.22;
    letter-spacing: -0.06em;
    word-break: auto-phrase;
}

.kh-section-title p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--kh-muted);
}

.kh-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 58px;
    align-items: center;
}

.kh-split.reverse {
    grid-template-columns: 1.05fr 1fr;
}

.kh-copy p {
    margin: 22px 0 0;
    color: var(--kh-muted);
    font-size: 1.06rem;
}

.kh-more {
    display: inline-flex;
    height: 52px;
    margin-top: 30px;
    align-items: center;
    padding: 0 26px;
    background: #111827;
    color: #ffffff;
    font-weight: 900;
}

.kh-more.gold {
    background: var(--kh-gold);
}

.kh-photo {
    margin: 0;
    width:100%;
    height:100%;
    overflow: hidden;
    border: 1px solid var(--kh-border);
    background: #ebe4d8;
    box-shadow: var(--kh-shadow);
    border-radius: 20px;
}

.kh-photo img {
    width: 100%;
    height:100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.kh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kh-work-card {
    position: relative;
    min-height: 250px;
    padding: 34px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
    border-radius: 20px;
}

.kh-work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(16, 24, 36, 0.78), rgba(16, 24, 36, 0.01));
}

.kh-work-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -40px;
    z-index: -1;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(176, 138, 60, 0.35);
    transform: rotate(45deg);
}

.kh-work-card strong {
    display: block;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.45rem;
    letter-spacing: -0.04em;

}

.kh-work-card span {
    color: rgba(255, 255, 255, 0.86);
}

.kh-work-card:hover {
    transform: translateY(-6px);
    transition: 0.25s;
}

.kh-work-sex {
    background-image: url('../new_img/work_sex_crime_01.jpg');
}

.kh-work-economic {
    background-image: url('../new_img/work_economic_crime_01.jpg');
}

.kh-work-violent {
    background-image: url('../new_img/work_violent_crime_01.jpg');
}

.kh-work-traffic {
    background-image: url('../new_img/work_traffic_crime_01.jpg');
}

.kh-work-juvenile {
    background-image: url('../new_img/work_juvenile_01.jpg');
}

.kh-work-addiction {
    background-image: url('../new_img/work_addiction_01.jpg');
}

.kh-process {
    padding: 110px 0;
    background: #ffffff;
    color: #111827;
}

.kh-process-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 34px 60px;
    align-items: start;
}

.kh-process h2 {
    color: #111827;
}

.kh-process p {
    color: var(--kh-muted);
}

.kh-process ol {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.kh-process li {
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    border-radius: 20px;
}

.kh-process b {
    display: block;
    margin-bottom: 8px;
    color: var(--kh-gold);
}

.kh-lawyer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.kh-lawyer-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
    border-radius: 20px
}

.kh-lawyer-card img {
    width: 220px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #e5e7eb;
    border-radius: 20px
}

.kh-lawyer-card span {
    color: var(--kh-gold);
    font-weight: 900;
}

.kh-lawyer-card h3 {
    margin: 6px 0 12px;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.kh-lawyer-card p {
    margin: 0;
    color: var(--kh-muted);
}

.kh-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kh-info-grid a {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    overflow: hidden;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.kh-info-grid a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 13, 20, 0.04), rgba(8, 13, 20, 0.82));
}

.kh-info-grid strong,
.kh-info-grid span {
    position: relative;
    z-index: 1;
}

.kh-info-grid strong {
    margin-bottom: 6px;
    font-size: 1.35rem;
}

.kh-info-grid span {
    color: rgba(255, 255, 255, 0.82);
}

.kh-info-grid a:nth-child(1) {
    background-image: url('../new_img/info_case_01.jpg');
}

.kh-info-grid a:nth-child(2) {
    background-image: url('../new_img/info_press_01.jpg');
}

.kh-info-grid a:nth-child(3) {
    background-image: url('../new_img/info_forms_01.jpg');
}

.kh-samchung-main {
    background: #ffffff;
}

.kh-cta {
    padding: 100px 0;
    background-image: linear-gradient(135deg, rgba(16, 24, 36, 0.88), rgba(16, 24, 36, 0.74)), url('../new_img/cta_banner_01.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.kh-cta span {
    color: var(--kh-gold-light);
    font-weight: 900;
    letter-spacing: 0.18em;
}

.kh-cta h2 {
    margin-top: 12px;
    color: #ffffff;
}

.kh-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.kh-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.kh-cta a {
    display: inline-flex;
    min-width: 250px;
    height: 56px;
    align-items: center;
    justify-content: center;
    padding: 0 34px;
    background: var(--kh-gold);
    color: #ffffff;
    font-weight: 900;
}

.kh-cta a:nth-child(2) {
    border: 1px solid rgba(215, 189, 120, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.kh-footer {
    padding: 60px 0 0;
    background: #101824;
    color: rgba(255, 255, 255, 0.76);
}

.kh-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.1fr;
    gap: 42px;
}

.kh-footer h2,
.kh-footer h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

.kh-footer p {
    margin: 0;
}

.kh-footer-copy {
    margin-top: 44px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.9rem;
}

.kh-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: var(--kh-gold);
    color: #ffffff;
    font-weight: 900;
}

@media (max-width: 1240px) {
    .kh-gnb > ul > li > a {
        padding: 0 10px;
    }

    .kh-header-call {
        display: none;
    }

    .kh-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kh-lawyer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .kh-inner {
        width: min(100% - 28px, 1400px);
    }

    .kh-topbar {
        display: none;
    }

    .kh-header-inner {
        height: 72px;
    }

    .kh-mobile-btn {
        display: block;
    }

    .kh-gnb {
        position: fixed;
        left: 0;
        right: 0;
        top: 72px;
        display: none;
        max-height: calc(100vh - 72px);
        overflow: auto;
        background: #ffffff;
        border-top: 1px solid rgba(17, 24, 39, 0.1);
        box-shadow: var(--kh-shadow);
    }

    .kh-gnb.is-open {
        display: block;
    }

    .kh-gnb > ul {
        display: block;
    }

    .kh-gnb > ul > li > a {
        height: auto;
        padding: 18px 22px;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .kh-gnb ul ul {
        position: static;
        display: none;
        min-width: 0;
        padding: 6px 22px 16px;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: #f7f3ea;
        border: 0;
        box-shadow: none;
    }

    .kh-gnb li:hover > ul {
        transform: none;
    }

    .kh-gnb li.is-open > ul {
        display: block;
    }

    .kh-gnb ul ul a {
        padding: 9px 4px;
        color: #222222;
    }

    .kh-hero {
        height: 620px;
    }

    .kh-hero .swiper-button-prev,
    .kh-hero .swiper-button-next {
        display: none;
    }

    .kh-split,
    .kh-split.reverse,
    .kh-process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .kh-process ol {
        grid-template-columns: repeat(2, 1fr);
    }

    .kh-info-grid {
        grid-template-columns: 1fr;
    }

    .kh-footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    html,
    body {
        font-size: 16px;
    }

    .kh-logo-image {
        width: 220px;
    }

    .kh-logo-subtitle {
        font-size: 0.8rem;
        margin-left: 8px;
    }

    .kh-hero {
        height: 560px;
        min-height: 520px;
    }

    .kh-hero-slide {
        background-position: center;
    }

    .kh-hero-slide::before {
        background: linear-gradient(
            90deg,
            rgba(8, 13, 20, 0.86) 0%,
            rgba(8, 13, 20, 0.72) 100%
        );
    }

    .kh-hero-content p {
        font-size: 1rem;
    }

    .kh-section,
    .kh-process {
        padding: 72px 0;
    }

    .kh-card-grid,
    .kh-process ol {
        grid-template-columns: 1fr;
    }

    .kh-work-card {
        min-height: 180px;
        padding: 26px;
    }

    .kh-lawyer-card {
        grid-template-columns: 1fr;
    }

    .kh-lawyer-card img {
        width: 100%;
    }

    .kh-cta {
        padding: 76px 0;
    }

    .kh-cta a {
        width: 100%;
        min-width: 0;
    }
}

/***
 * 상담전화 섹션 - 형사사건, 삼청교육대보상
 ***/

.kh-dual-call {

    padding: 90px 0;

    background:
    linear-gradient(
        135deg,
        #0b1523,
        #16263c
    );

    text-align:center;

    color:#ffffff;

    position:relative;
}

.kh-call-label {

    display:block;

    color:#d7bd78;

    letter-spacing:4px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;
}

.kh-dual-call h2 {

    font-size:42px;

    margin-bottom:50px;

    font-weight:800;
}

.kh-call-wrap {

    display:flex;

    justify-content:center;

    align-items:center;

    gap:50px;
}

.kh-call-box small {

    display:block;

    color:#d7bd78;

    margin-bottom:15px;

    font-size:18px;

    font-weight:700;
}

.kh-call-box strong {

    display:block;

    font-size:80px;

    line-height:1;

    font-weight:900;

    letter-spacing:-3px;
}

.kh-divider {

    width:1px;

    height:120px;

    background:
    rgba(215,189,120,.4);
}


/***
 * 서브페이지 공통 - 법무법인소개 > 인사말
 ***/

.kh-sub-visual {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    min-height: 520px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center right;
    color: #ffffff;
}

.kh-sub-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 13, 20, 0.86) 0%,
        rgba(16, 24, 36, 0.70) 42%,
        rgba(16, 24, 36, 0.20) 72%,
        rgba(255, 255, 255, 0.02) 100%
    );
    z-index: 1;
}

.kh-sub-visual::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -160px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(215, 189, 120, 0.28);
    transform: rotate(45deg);
    z-index: 1;
}

.kh-sub-greeting-visual {
    background-image: url('../new_img/greeting_visual_01.jpg');
}

.kh-sub-visual .kh-inner {
    position: relative;
    z-index: 2;
}

.kh-sub-visual-text {
    max-width: 760px;
    padding-top: 40px;
}

.kh-sub-visual-text span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--kh-gold-light);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.22em;
}

.kh-sub-visual-text h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.12;
    letter-spacing: -0.07em;
    word-break: auto-phrase;
}

.kh-sub-visual-text p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.16rem;
    line-height: 1.8;
}

.kh-breadcrumb {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.kh-breadcrumb b {
    color: #ffffff;
}

.kh-greeting-lead {
    background: #ffffff;
}

.kh-greeting-message {
    position: relative;
    padding: 42px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.kh-greeting-message::before {
    content: "“";
    position: absolute;
    right: 34px;
    top: 4px;
    color: rgba(176, 138, 60, 0.18);
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
}

.kh-greeting-message h2 {
    position: relative;
    margin: 0 0 24px;
    color: #111827;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.26;
    letter-spacing: -0.06em;
    word-break: auto-phrase;
}

.kh-greeting-message p {
    position: relative;
    margin: 18px 0 0;
    color: var(--kh-muted);
    font-size: 1.06rem;
}

.kh-greeting-sign {
    position: relative;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(17, 24, 39, 0.1);
    color: #111827;
    font-weight: 900;
}

.kh-greeting-sign span {
    color: var(--kh-gold);
    font-weight: 900;
}

.kh-value-section {
    background: var(--kh-bg);
}

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

.kh-value-card {
    min-height: 250px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.kh-value-card b {
    display: block;
    margin-bottom: 18px;
    color: var(--kh-gold);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
}

.kh-value-card h3 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

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

.kh-greeting-principle {
    background: #ffffff;
}

.kh-greeting-quote {
    padding: 36px;
    background: #101824;
    color: #ffffff;
    border-radius: 20px;
    margin-top:30px;
}

.kh-greeting-quote strong {
    display: block;
    margin-bottom: 14px;
    color: var(--kh-gold-light);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
}

.kh-greeting-quote p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.kh-greeting-list {
    margin-top: 28px;
}

.kh-greeting-list li {
    position: relative;
    padding: 16px 0 16px 28px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    color: #374151;
}

.kh-greeting-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    width: 9px;
    height: 9px;
    background: var(--kh-gold);
    border-radius: 50%;
}

.kh-sub-cta {
    padding: 92px 0;
    background-image: linear-gradient(
        135deg,
        rgba(16, 24, 36, 0.65),
        rgba(16, 24, 36, 0.50)
    ), url('../new_img/greeting_cta_01.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.kh-sub-cta span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--kh-gold-light);
    font-weight: 900;
    letter-spacing: 0.18em;
}

.kh-sub-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.22;
    letter-spacing: -0.06em;
}

.kh-sub-cta p {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.82);
}

.kh-sub-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.kh-sub-cta-buttons a {
    display: inline-flex;
    min-width: 240px;
    height: 56px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    background: var(--kh-gold);
    color: #ffffff;
    font-weight: 900;
}

.kh-sub-cta-buttons a:nth-child(2) {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(215, 189, 120, 0.7);
}

@media (max-width: 960px) {
    .kh-sub-visual {
        min-height: 460px;
        background-position: center;
    }

    .kh-sub-visual-text {
        padding-top: 0;
    }

    .kh-value-grid {
        grid-template-columns: 1fr;
    }

    .kh-greeting-message {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .kh-sub-visual {
        min-height: 420px;
    }

    .kh-sub-visual::before {
        background: linear-gradient(
            90deg,
            rgba(8, 13, 20, 0.88) 0%,
            rgba(8, 13, 20, 0.74) 100%
        );
    }

    .kh-sub-visual-text p {
        font-size: 1rem;
    }

    .kh-greeting-message {
        padding: 24px;
    }

    .kh-value-card {
        min-height: auto;
        padding: 26px;
    }

    .kh-sub-cta-buttons a {
        width: 100%;
        min-width: 0;
    }
}


/***
 * 서브페이지 - 법무법인소개 > 변호사그룹 개선형
 * 기존 인사말 공용 CSS(.kh-sub-visual, .kh-section, .kh-sub-cta 등)를 재사용합니다.
 ***/

.kh-sub-lawyers-visual {
    background-image: url('../new_img/lawyers_visual_01.jpg');
}

.kh-lawyer-page-intro {
    background: #ffffff;
}

.kh-lawyer-rep-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.kh-lawyer-rep-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    align-items: stretch;
    min-height: 420px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.kh-lawyer-rep-photo {
    margin: 0;
    overflow: hidden;
    background: #ebe4d8;
    border-radius: 20px;
}

.kh-lawyer-rep-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kh-lawyer-rep-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kh-lawyer-rep-info .kh-position {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--kh-gold);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.kh-lawyer-rep-info h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.16;
    letter-spacing: -0.06em;
}

.kh-lawyer-rep-info .kh-field {
    margin-bottom: 18px;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 900;
}

.kh-lawyer-rep-info p {
    margin: 0;
    color: var(--kh-muted);
}

.kh-lawyer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.kh-lawyer-tags span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    background: #f7f3ea;
    color: #7a5b20;
    border: 1px solid rgba(176, 138, 60, 0.22);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
}

.kh-lawyer-career-section {
    background: var(--kh-bg);
}

.kh-career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.kh-career-card {
    padding: 36px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.kh-career-card span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--kh-gold);
    font-weight: 900;
    letter-spacing: 0.16em;
    font-size: 0.82rem;
}

.kh-career-card h3 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 1.8rem;
    letter-spacing: -0.05em;
}

.kh-career-card ul {
    display: grid;
    gap: 8px;
}

.kh-career-card li {
    position: relative;
    padding-left: 18px;
    color: #374151;
}

.kh-career-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    background: var(--kh-gold);
    border-radius: 50%;
}

.kh-member-section {
    background: #ffffff;
}

.kh-member-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kh-member-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.kh-member-photo {
    margin: 0;
    background: #ebe4d8;
}

.kh-member-photo img {
    width: 100%;
    aspect-ratio: 4 / 4.8;
    object-fit: cover;
}

.kh-member-info {
    padding: 26px;
}

.kh-member-info span {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--kh-gold);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.kh-member-info h3 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.kh-member-info ul {
    display: grid;
    gap: 8px;
}

.kh-member-info li {
    position: relative;
    padding-left: 16px;
    color: var(--kh-muted);
    font-size: 0.96rem;
}

.kh-member-info li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--kh-gold);
    border-radius: 50%;
}

.kh-lawyer-focus {
    background: var(--kh-bg);
}

.kh-lawyer-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.kh-lawyer-focus-card {
    min-height: 210px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.kh-lawyer-focus-card b {
    display: block;
    margin-bottom: 18px;
    color: var(--kh-gold);
    letter-spacing: 0.16em;
}

.kh-lawyer-focus-card h3 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 1.25rem;
    letter-spacing: -0.04em;
}

.kh-lawyer-focus-card p {
    margin: 0;
    color: var(--kh-muted);
}

.kh-sub-lawyers-cta {
    background-image: linear-gradient(
        135deg,
        rgba(16, 24, 36, 0.66),
        rgba(16, 24, 36, 0.52)
    ), url('../new_img/lawyers_cta_01.jpg');
}

@media (max-width: 1240px) {
    .kh-lawyer-rep-grid {
        grid-template-columns: 1fr;
    }

    .kh-member-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kh-lawyer-focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .kh-career-grid {
        grid-template-columns: 1fr;
    }

    .kh-lawyer-rep-card {
        grid-template-columns: 220px 1fr;
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .kh-lawyer-rep-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 24px;
    }

    .kh-lawyer-rep-photo img {
        aspect-ratio: 4 / 5;
    }

    .kh-member-grid,
    .kh-lawyer-focus-grid {
        grid-template-columns: 1fr;
    }

    .kh-career-card {
        padding: 26px;
    }
}

/***
 * 서브페이지 - 법무법인소개 > 오시는길
 * 공용 서브페이지 CSS는 기존 .kh-sub-visual, .kh-section, .kh-split, .kh-photo, .kh-sub-cta를 사용합니다.
 ***/

.kh-sub-location-visual {
    background-image: url('../new_img/location_visual_01.jpg');
}

.kh-location-info {
    background: #ffffff;
}

.kh-location-panel {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: stretch;
}

.kh-location-map {
    min-height: 520px;
    overflow: hidden;
    background: #e8e2d6;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.kh-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.kh-location-card {
    padding: 42px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.kh-location-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--kh-gold);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.kh-location-card h2 {
    margin: 0 0 20px;
    color: #111827;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.2;
    letter-spacing: -0.06em;
}

.kh-location-card p {
    margin: 0 0 24px;
    color: var(--kh-muted);
}

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

.kh-location-list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.kh-location-list b {
    color: #111827;
}

.kh-location-list span {
    margin: 0;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
}

.kh-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.kh-location-actions a {
    display: inline-flex;
    min-width: 180px;
    height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: #111827;
    color: #ffffff;
    font-weight: 900;
}

.kh-location-actions a:nth-child(2) {
    background: var(--kh-gold);
}

.kh-location-guide {
    background: var(--kh-bg);
}

.kh-location-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kh-location-guide-card {
    min-height: 240px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.kh-location-guide-card b {
    display: block;
    margin-bottom: 18px;
    color: var(--kh-gold);
    font-size: 0.9rem;
    letter-spacing: 0.16em;
}

.kh-location-guide-card h3 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.kh-location-guide-card p {
    margin: 0;
    color: var(--kh-muted);
}

.kh-location-visit {
    background: #ffffff;
}

.kh-visit-list {
    margin-top: 28px;
}

.kh-visit-list li {
    position: relative;
    padding: 16px 0 16px 30px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    color: #374151;
}

.kh-visit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    width: 9px;
    height: 9px;
    background: var(--kh-gold);
    border-radius: 50%;
}

.kh-sub-location-cta {
    background-image: linear-gradient(
        135deg,
        rgba(16, 24, 36, 0.66),
        rgba(16, 24, 36, 0.52)
    ), url('../new_img/location_cta_01.jpg');
}

@media (max-width: 960px) {
    .kh-location-panel {
        grid-template-columns: 1fr;
    }

    .kh-location-guide-grid {
        grid-template-columns: 1fr;
    }

    .kh-location-map,
    .kh-location-map iframe {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .kh-location-card {
        padding: 26px;
    }

    .kh-location-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .kh-location-actions a {
        width: 100%;
        min-width: 0;
    }

    .kh-location-map,
    .kh-location-map iframe {
        min-height: 340px;
    }

    .kh-location-guide-card {
        min-height: auto;
        padding: 26px;
    }
}
