@charset "UTF-8";

/* ========================================
   Common Styles - tongdal
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;700&display=swap');

:root {
    --primary: #1a1a1a;
    --secondary: #666;
    --border: #ddd;
    --bg-cream: #FAF6EB;
    --white: #fff;
    --black: #000;
    --font-base: 16px;
    --header-height: 90px;
    --inner-max: 1520px;
    --inner-max-program: 1440px;
    --inner-pad: 80px;
    --bc-red: #840028;
}

.bc-r {
	color: var(--bc-red);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--font-base);
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    max-width: 100vw;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

@supports (text-box: trim-both cap alphabetic) {
    :where(
        h1, h2, h3, h4, h5, h6,
        p, span, a, em, strong, label,
        button, .btn
    ) {
        text-box: trim-both cap alphabetic;
    }
}

#wrap {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.sub-page {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

#content {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    #wrap,
    .sub-page,
    #content {
        overflow-x: clip;
    }
}

/* ========================================
   Inner / Container
   ======================================== */
.inner {
    max-width: calc(var(--inner-max) + var(--inner-pad) * 2);
    margin: 0 auto;
    padding: 0 var(--inner-pad);
}

.sub-page .inner {
    max-width: 1520px;
    padding: 0;
}

/* 상세페이지 모바일/태블릿: inner 좌우 여백 확보 */
@media (max-width: 1024px) {
    .sub-page .inner {
        max-width: calc(1520px + var(--inner-pad) * 2);
        padding: 0 var(--inner-pad);
    }
}

/* ========================================
   Header
   ======================================== */
#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease, opacity 0.35s ease;
}

#header.fixed {
    position: fixed;
    background-color: var(--bg-cream);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

#header.header-paused,
#header.fixed.header-paused {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    pointer-events: none;
}

.header-inner {
    width: 100%;
    padding: 0 var(--inner-pad);
    height: 100%;
    display: flex;
    align-items: center;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
    line-height: 0;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}

.header-logo .logo-default { display: block; }
.header-logo .logo-fixed   { display: none; }

#header.fixed .header-logo .logo-default { display: none; }
#header.fixed .header-logo .logo-fixed   { display: block; }

/* GNB */
#gnb {
    flex: 1;
    display: flex;
    padding-left: 80px;
}

.gnb-list {
    display: flex;
    align-items: center;
    width: 100%;
}

.gnb-item {
    position: relative;
}

/* 마지막 1depth 메뉴: 우측 header-right와 붙도록 오른쪽 끝으로 밀기 */
.gnb-item.gnb-last {
    margin-left: auto;
}

.gnb-item > a {
    display: block;
    padding: 0 28px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: var(--header-height);
    white-space: nowrap;
    transition: color 0.2s;
}

#header.fixed .gnb-item > a {
    color: var(--primary);
}

.gnb-item > a:hover {
    opacity: 0.75;
}

/* SNB (2depth) */
.snb-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    margin-top: 12px;
    background: var(--bg-cream);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 12px 0;
    border-radius: 12px;
    z-index: 100;
}

/* hover 영역 연결 (gnb-item → snb-list 사이 빈 공간 커버) */
.gnb-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.gnb-item:hover .snb-list {
    display: block;
}

.snb-item a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    color: var(--primary);
    white-space: nowrap;
    text-align: center;
    transition: background 0.15s;
}

.snb-item a:hover {
    background: rgba(0,0,0,0.05);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s, opacity 0.2s;
    text-decoration: none;
}

#header.fixed .header-icon-btn {
    color: var(--primary);
}

.header-icon-btn:hover {
    opacity: 0.7;
}

.header-icon-btn svg {
    display: block;
}

.header-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 0;
    transition: color 0.2s, opacity 0.2s;
}

#header.fixed .header-hamburger {
    color: var(--primary);
}

.header-hamburger:hover {
    opacity: 0.7;
}

/* ========================================
   Sidebar
   ======================================== */
#sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#sidebar-overlay.active {
    display: block;
    opacity: 1;
}

#sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100vw;
    height: 100%;
    background: var(--bg-cream);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

#sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px 24px;
    flex-shrink: 0;
}

.sidebar-logo img {
    height: 36px;
    width: auto;
}

.sidebar-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    background: none;
    border: none;
    transition: opacity 0.2s;
}

.sidebar-close:hover {
    opacity: 0.6;
}

/* Sidebar Nav (Accordion) */
.sidebar-nav {
    flex: 1;
    padding: 0 32px 32px;
    display: flex;
    flex-direction: column;
}

.sidebar-menu {
    border-top: 1px solid rgba(0,0,0,0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-menu-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    text-decoration: none;
}

.sidebar-menu-link.has-sub {
    cursor: pointer;
}

.sidebar-menu-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.sidebar-menu-arrow svg {
    display: block;
}

.sidebar-menu-item.open .sidebar-menu-arrow {
    transform: rotate(180deg);
}

.sidebar-sub-list {
    display: none;
    padding: 4px 0 16px 16px;
}

.sidebar-menu-item.open .sidebar-sub-list {
    display: block;
}

.sidebar-sub-item a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.15s;
}

.sidebar-sub-item a:hover {
    color: var(--primary);
}

/* Sidebar Footer (deprecated - moved to sidebar-menu-bottom) */
.sidebar-footer {
    display: none;
}

/* Sidebar Bottom (inside nav) */
.sidebar-menu-bottom {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}
.sidebar-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sidebar-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sidebar-auth-btn {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.sidebar-auth-btn:hover {
    color: var(--primary);
}
.sidebar-auth-divider {
    width: 1px;
    height: 14px;
    background: var(--border);
}

.sidebar-lang {
    position: relative;
    display: inline-block;
}

.sidebar-lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg-cream);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 10px 36px 10px 14px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: var(--primary);
    cursor: pointer;
    outline: none;
}

.sidebar-lang-arrow {
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   Footer
   ======================================== */
#footer {
    background: #221e1f;
    color: #fff;
    padding: 60px 0;
}

.footer-inner {
    max-width: calc(var(--inner-max) + var(--inner-pad) * 2);
    margin: 0 auto;
    padding: 0 var(--inner-pad);
    display: flex;
    align-items: flex-start;
    position: relative;
    min-height: 177px;
}

/* 좌측: 상호 + 정보 */
.footer-left {
    flex-shrink: 0;
}

.footer-title {
    font-family: 'Noto Serif KR', serif;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    margin: 0 0 40px 0;
    line-height: 1;
}

.footer-info-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info-row {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.footer-info-row strong {
    font-weight: 700;
    margin-right: 11px;
}

.footer-info-row a {
    color: #fff;
    text-decoration: none;
}

.footer-info-row a:hover {
    text-decoration: underline;
}

.footer-info-inline {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-info-inline span {
    display: inline-flex;
    align-items: center;
}

.footer-copy {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1;
}

/* 모바일 전용 심볼 */
.footer-title-row {
    display: block;
}

.footer-symbol-mo {
    display: none;
}

/* 중앙: 로고 */
.footer-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer-center img,
.footer-center svg {
    height: 120px;
    width: auto;
    opacity: 0.8;
}

/* 우측: SNS + 약관 */
.footer-right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 177px;
}

.footer-sns {
    display: flex;
    gap: 20px;
}

.footer-sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-sns-icon:hover {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links-divider {
    color: #fff;
    font-size: 14px;
}

/* ========================================
   Contact Modal
   ======================================== */
.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.contact-modal-overlay.active {
    display: flex;
}
.contact-modal {
    background: #fff;
    border-radius: 30px;
    width: 532px;
    max-height: 90vh;
    overflow: visible;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-modal-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.contact-modal-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #221e1f;
    margin: 0;
}
.contact-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #221e1f;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    color: #221e1f;
}
.contact-modal-close:hover {
    opacity: 0.6;
}
.contact-modal-divider {
    width: 100%;
    height: 1px;
    background: rgba(34,30,31,0.2);
}
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-field label {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    color: #221e1f;
}
.contact-field label .required {
    color: #840028;
}
.contact-input {
    width: 100%;
    height: 44px;
    padding: 0 23px;
    border: 1px solid rgba(34,30,31,0.2);
    border-radius: 12px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: #221e1f;
    background: #fff;
    box-sizing: border-box;
    outline: none;
}
.contact-input:focus {
    border-color: #840028;
}
.contact-textarea {
    width: 100%;
    height: 140px;
    padding: 23px;
    border: 1px solid rgba(34,30,31,0.2);
    border-radius: 12px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: #221e1f;
    background: #fff;
    box-sizing: border-box;
    outline: none;
    resize: none;
    line-height: 1.6;
}
.contact-textarea:focus {
    border-color: #840028;
}
/* 커스텀 Select */
.contact-select-wrap {
    position: relative;
}
.contact-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 44px;
    padding: 0 20px 0 23px;
    border: 1px solid rgba(34,30,31,0.2);
    border-radius: 12px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: #221e1f;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
}
.contact-select-text {
    color: #8c9091;
}
.contact-select-wrap .contact-select-text:not(:empty) {
    color: #221e1f;
}
.contact-select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(34,30,31,0.2);
    border-radius: 12px;
    box-shadow: 2px 2px 8px rgba(34,30,31,0.2);
    z-index: 10;
    padding: 12px 0;
    max-height: 240px;
    overflow-y: auto;
}
.contact-select-dropdown::-webkit-scrollbar {
    width: 4px;
}
.contact-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
    margin: 12px 0;
}
.contact-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(34,30,31,0.15);
    border-radius: 2px;
}
.contact-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(34,30,31,0.3);
}
.contact-select-dropdown.open {
    display: block;
}
.contact-select-option {
    padding: 12px 24px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.contact-select-option:hover {
    background: #f5f5f5;
}
.contact-select-option.selected {
    background: #FAF6EB;
}
/* Messenger 필드 (외국어 전용) */
.contact-messenger-wrap {
    display: flex;
    gap: 12px;
}
.contact-messenger-select-wrap {
    flex: 0 0 155px;
    width: 155px;
}
.contact-messenger-wrap .contact-input {
    flex: 1;
    min-width: 0;
}
/* Submit */
.contact-modal-footer {
    width: 100%;
}
.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 59px;
    background: #840028;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    cursor: pointer;
}
.contact-submit-btn:hover:not(.disabled) {
    background: #6d0020;
}
.contact-submit-btn.disabled {
    background: #8c9091;
    cursor: default;
    pointer-events: none;
}
/* 완료 팝업 */
.contact-modal.complete {
    width: 400px;
    padding: 0;
}
.contact-complete {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    padding: 40px 36px;
}
.contact-complete-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    color: #221e1f;
    margin: 0;
    width: 100%;
}
.contact-complete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 51px;
    background: #840028;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    cursor: pointer;
}
.contact-complete-btn:hover {
    background: #6d0020;
}

/* ========================================
   Utility
   ======================================== */
.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   Responsive (Common)
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --inner-pad: 40px;
    }

    .header-inner {
        justify-content: space-between;
    }

    #gnb {
        display: none;
    }

    .header-icon-btn {
        display: none;
    }

    /* Footer 태블릿 */
    .footer-inner {
        padding: 0 40px;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .footer-center {
        position: static;
        transform: none;
        order: -1;
    }
    .footer-center img,
    .footer-center svg {
        height: 80px;
    }
    .footer-left {
        text-align: center;
        width: 100%;
    }
    .footer-info-group {
        align-items: center;
    }
    .footer-info-inline {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 16px;
    }
    .footer-right {
        margin-left: 0;
        align-items: center;
        height: auto;
        gap: 16px;
    }
    .footer-sns {
        justify-content: center;
    }
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    :root {
        --inner-pad: 20px;
        --header-height: 48px;
    }

    .header-logo img {
        height: 28px;
    }

    .header-hamburger svg {
        width: 24px;
        height: 24px;
    }

    #sidebar {
        width: 100vw;
    }

    /* Footer 모바일 */
    #footer {
        padding: 60px 0;
    }
    .footer-inner {
        padding: 0 24px;
        flex-direction: column;
        gap: 0;
        min-height: 0;
        align-items: flex-start;
    }
    .footer-center {
        display: none;
    }
    /* footer-left: title+symbol 행(order1) + info(order4) 로 분리 */
    .footer-left {
        width: 100%;
        text-align: left;
        display: contents;
    }
    .footer-title-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        order: 1;
        margin-bottom: 32px;
    }
    .footer-title {
        font-size: 24px;
        line-height: 1.4;
        margin: 0;
    }
    .footer-symbol-mo {
        display: block;
        width: 103px;
        height: 60px;
        flex-shrink: 0;
    }
    /* footer-right: display contents로 sns(order2) + links(order3) 분리 */
    .footer-right {
        display: contents;
    }
    .footer-sns {
        order: 2;
        justify-content: flex-start;
        margin-bottom: 32px;
    }
    .footer-links {
        order: 3;
        justify-content: flex-start;
        margin-bottom: 32px;
    }
    .footer-links a {
        font-size: 16px;
        color: #fff;
    }
    .footer-links-divider {
        font-size: 16px;
    }
    .footer-info-group {
        order: 4;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }
    .footer-info-row {
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }
    .footer-info-inline {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 11px;
    }
    .footer-copy {
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }
}

/* ========================================
   공통 섹션 : 진료안내 CTA
   ======================================== */
.sec-consult {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0;
}

.consult-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 30, 31, 0.6);
}

.sec-consult .inner {
    position: relative;
    z-index: 1;
}

.consult-wrap {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.consult-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.consult-subtitle {
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 400;
    color: #F7941C;
    line-height: 1;
}

.consult-heading {
    font-family: 'Noto Serif KR', serif;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.consult-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
}

.consult-info {
    flex-shrink: 0;
    width: 580px;
    padding: 60px;
    border-radius: 30px;
    background: rgba(34, 30, 31, 0.6);
}

.consult-info-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.consult-table {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.consult-row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.consult-row.no-border {
    border-bottom: none;
    padding-bottom: 0;
}

.consult-label {
    flex-shrink: 0;
    min-width: 80px;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.consult-value {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
}

.consult-value em {
    font-style: normal;
    font-weight: 700;
}

.consult-reserve-btn {
    display: inline-flex;
    height: 46px;
    padding: 0 20px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-top: 80px;
    transition: all 0.3s;
}

.consult-reserve-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   공통 섹션 : 마무리 문구
   ======================================== */
.sec-closing {
    padding: 160px 0;
}

.closing-text {
    font-family: 'Noto Serif KR', serif;
    font-size: 60px;
    font-weight: 700;
    color: #221E1F;
    text-align: center;
    line-height: 1.4;
}

/* ========================================
   공통 섹션 반응형 (sec-consult, sec-closing)
   ======================================== */
@media (max-width: 1024px) {
    .sec-consult {
        padding: 100px 0;
    }

    .consult-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .consult-text {
        gap: 32px;
    }

    .consult-heading {
        font-size: 40px;
    }

    .consult-desc {
        font-size: 18px;
    }

    .consult-info {
        width: 100%;
        padding: 40px;
        box-sizing: border-box;
    }

    .consult-info-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .consult-row {
        gap: 40px;
    }

    .consult-label,
    .consult-value {
        font-size: 20px;
    }

    .consult-reserve-btn {
        margin-top: 40px;
    }

    .sec-closing {
        padding: 100px 0;
    }

    .closing-text {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .sec-consult {
        padding: 80px 0;
    }

    .consult-wrap {
        gap: 32px;
    }

    .consult-text {
        gap: 24px;
    }

    .consult-subtitle {
        font-size: 16px;
    }

    .consult-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .consult-desc {
        font-size: 15px;
    }

    .consult-info {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .consult-info-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .consult-table {
        gap: 16px;
    }

    .consult-row {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 16px;
        gap: 6px;
    }

    .consult-label {
        font-size: 15px;
        min-width: 0;
    }

    .consult-value {
        font-size: 15px;
    }

    .consult-reserve-btn {
        margin-top: 32px;
        height: 40px;
        font-size: 15px;
    }

    .sec-closing {
        padding: 80px 0;
    }

    .closing-text {
        font-size: 24px;
    }
}

/* ========================================
   반응형 유틸리티
   ======================================== */
.mo-br { display: none; }
.pc-br { display: inline; }
.mo-only { display: none; }
.pc-only { display: inline; }

@media (max-width: 768px) {
    .mo-br { display: inline; }
    .pc-br { display: none; }
    .mo-only { display: inline; }
    .pc-only { display: none; }
}
