:root{
    --ink:#342b27;
    --muted:#756a64;
    --cream:#fffaf0;
    --paper:#fff;
    --line:#eadfce;
    --orange:#e67e3c;
    --orange-dark:#b84a2f;
    --green:#4f7963;
    --navy:#314960;
    --purple:#72558d;
    --shadow:0 14px 38px rgba(78,53,36,.11)
}
 *{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth
}
body{
    margin:0;
    color:var(--ink);
    background:#fffdf9;
    font-family:"Noto Sans KR",system-ui,sans-serif;
    font-size:16px;
    line-height:1.65
}
button,input,select{
    font:inherit
}
button,a,input,select{
    outline-offset:3px
}
a{
    color:inherit
}
.skip-link{
    position:fixed;
    left:16px;
    top:-100px;
    z-index:1000;
    background:#fff;
    padding:12px 18px;
    border:2px solid var(--orange-dark);
    border-radius:8px
}
.skip-link:focus{
    top:12px
}
.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0
}
 .site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,253,249,.97);
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(10px)
}
.header-inner{
    width:min(1180px,calc(100% - 40px));
    min-height:86px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px
}
.brand{
    display:flex;
    align-items:center;
    gap:13px;
    text-decoration:none
}
.brand-mark{
    width:49px;
    height:49px;
    display:grid;
    place-items:center;
    background:#fff2da;
    border-radius:15px
}
.brand-mark svg{
    width:39px;
    height:39px;
    fill:var(--orange)
}

.brand-logo {
    display: block;
    width: 49px;
    height: 49px;
    object-fit: contain;
}

.brand-mark .brand-door{
    fill:var(--cream)
}
.brand-mark .brand-heart{
    fill:var(--orange-dark)
}
.brand strong{
    display:block;
    font-size:1.27rem;
    letter-spacing:-.04em
}
.brand small{
    display:block;
    color:var(--muted);
    font-size:.78rem;
    letter-spacing:.12em
}
.main-nav{
    display:flex;
    align-self:stretch
}
.nav-item{
    position:relative;
    display:flex
}
.nav-link{
    min-width:126px;
    border:0;
    background:none;
    color:var(--ink);
    font-weight:700;
    cursor:pointer
}
.nav-link span{
    margin-left:5px;
    color:var(--orange-dark)
}
.nav-link:hover,.nav-link:focus-visible{
    color:var(--orange-dark);
    background:#fff6e8
}
.dropdown{
    position:absolute;
    top:70px;
    left:0;
    min-width:158px;
    margin:0;
    padding:8px;
    list-style:none;
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transform:translateY(-6px);
    transition:.18s
}
.dropdown-right{
    left:auto;
    right:0
}
.nav-item:hover .dropdown,.nav-item:focus-within .dropdown{
    opacity:1;
    visibility:visible;
    transform:none
}
.dropdown a{
    display:block;
    padding:10px 12px;
    border-radius:8px;
    text-decoration:none;
    color:#544741
}
.dropdown a:hover,.dropdown a:focus{
    background:#fff1d7;
    color:var(--orange-dark)
}
 .search-section{
    background:linear-gradient(110deg,#fff4df 0%,#fffaf1 58%,#f7ead3 100%);
    border-bottom:1px solid #ead8bd
}
.search-inner{
    width:min(1040px,calc(100% - 40px));
    margin:auto;
    padding:42px 0 38px
}
.eyebrow{
    margin:0 0 4px;
    color:var(--orange-dark);
    font-weight:800
}
.search-section h1{
    margin:0 0 22px;
    font-size:clamp(2rem,4vw,2.8rem);
    letter-spacing:-.055em
}
.search-form{
    background:#fff;
    border:1px solid #eedfc8;
    border-radius:20px;
    padding:22px;
    box-shadow:0 18px 45px rgba(116,73,37,.12)
}
.primary-search{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    border:2px solid var(--orange-dark);
    border-radius:12px;
    overflow:hidden;
    background:#fff
}
.search-icon{
    padding-left:18px;
    color:var(--orange-dark);
    font-size:1.7rem;
    line-height:1
}
.primary-search input{
    min-width:0;
    height:62px;
    border:0;
    padding:0 14px;
    font-size:1.05rem;
    color:var(--ink)
}
.primary-search input:focus{
    outline:0
}
.search-button{
    align-self:stretch;
    border:0;
    background:var(--orange-dark);
    color:#fff;
    padding:0 32px;
    font-weight:800;
    cursor:pointer
}
.search-button:hover{
    background:#963923
}
.filter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-top:18px
}
.filter-field span{
    display:block;
    margin-bottom:6px;
    font-weight:700;
    font-size:.9rem
}
.filter-field select{
    width:100%;
    height:49px;
    padding:0 38px 0 13px;
    border:1px solid #d8c9b6;
    border-radius:9px;
    background:#fffaf1;
    color:var(--ink);
    cursor:pointer
}
.filter-field select:disabled{
    color:#8a7e76;
    background:#f3eee7;
    cursor:not-allowed;
    opacity:1
}
.service-filter{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:20px 0 0;
    padding:0;
    border:0
}
.service-filter legend{
    float:left;
    margin-right:17px;
    padding:8px 0;
    font-weight:800
}
.service-filter label{
    cursor:pointer
}
.service-filter input{
    position:absolute;
    opacity:0
}
.service-filter span{
    display:block;
    padding:8px 14px;
    border:1px solid #ddcdb9;
    border-radius:999px;
    background:#fff;
    color:#5b504a;
    font-weight:600
}
.service-filter input:checked+span{
    border-color:var(--orange-dark);
    background:#fff0dc;
    color:var(--orange-dark);
    box-shadow:inset 0 0 0 1px var(--orange-dark)
}
.service-filter input:focus-visible+span{
    outline:3px solid rgba(184,74,47,.25)
}
 .detail-container{
    width:min(1180px,calc(100% - 40px));
    margin:auto;
    padding:28px 0 80px
}
.breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:18px;
    color:var(--muted);
    font-size:.88rem
}
.breadcrumb a{
    text-decoration:none
}
.breadcrumb a:hover{
    color:var(--orange-dark);
    text-decoration:underline
}
.breadcrumb strong{
    color:var(--ink)
}
 .profile-card,.info-section,.location-section,.nearby-section{
    position:relative;
    overflow:hidden;
    margin-bottom:24px;
    padding:30px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:0 7px 24px rgba(75,51,35,.055)
}
.profile-card:before,.info-section:before{
    content:"";
    position:absolute;
    top:-1px;
    left:-1px;
    right:-1px;
    height:7px
}
.profile-card:before{
    background:linear-gradient(90deg,var(--orange-dark),var(--orange),#efb24f)
}
.profile-heading{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px
}
.profile-tags{
    display:flex;
    gap:8px
}
.tag{
    display:inline-block;
    padding:5px 9px;
    border-radius:6px;
    background:#f3eee7;
    color:#665b54;
    font-size:.78rem;
    font-weight:800
}
.grade-a{
    background:#e4f1e7;
    color:#396244
}
.profile-heading h2{
    margin:12px 0 4px;
    font-size:clamp(1.8rem,4vw,2.55rem);
    line-height:1.3;
    letter-spacing:-.05em
}
.profile-address{
    margin:0;
    color:var(--muted);
    font-size:1.05rem
}
.outline-button{
    display:inline-block;
    border:1px solid #c99f7a;
    border-radius:10px;
    background:#fff;
    color:var(--orange-dark);
    padding:10px 15px;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
    cursor:pointer
}
.outline-button:hover{
    background:#fff4e2
}
.profile-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    margin:27px 0 0;
    border-top:1px solid var(--line);
    border-left:1px solid var(--line)
}
.profile-info div{
    min-width:0;
    padding:17px 18px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line)
}
.profile-info .wide-info{
    grid-column:span 3
}
.profile-info dt{
    margin-bottom:4px;
    color:var(--muted);
    font-size:.84rem;
    font-weight:700
}
.profile-info dd{
    margin:0;
    font-weight:600
}
.profile-info a{
    color:var(--orange-dark);
    text-underline-offset:3px
}
.data-notice{
    margin:14px 0 0;
    color:#8a7b72;
    font-size:.82rem
}
 .info-section:before{
    background:var(--section-accent)
}
.people-section{
    --section-accent:linear-gradient(90deg,#355f4d,#67a27e,#a0c99f)
}
.facility-section{
    --section-accent:linear-gradient(90deg,#c5aa76,#ead8ae,#f3e9ca)
}
.staff-section{
    --section-accent:linear-gradient(90deg,#23384c,#486a89,#7993aa)
}
.fee-section{
    --section-accent:linear-gradient(90deg,#543e6a,#8162a0,#b493c8)
}
.section-heading{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:22px;
    text-align:left
}
.section-heading>div:first-child{
    margin-right:auto
}
.section-heading p{
    margin:0;
    color:var(--section-kicker,var(--orange-dark));
    font-size:.86rem;
    font-weight:800
}
.people-section .section-heading p{
    --section-kicker:var(--green)
}
.facility-section .section-heading p{
    --section-kicker:#8a6c34
}
.staff-section .section-heading p{
    --section-kicker:var(--navy)
}
.fee-section .section-heading p{
    --section-kicker:var(--purple)
}
.section-heading h2{
    margin:2px 0 0;
    font-size:1.65rem;
    letter-spacing:-.045em
}
.updated-date{
    color:var(--muted);
    font-size:.84rem
}
 .number-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border:1px solid #d7e3da;
    border-radius:13px;
    overflow:hidden
}
.number-item{
    padding:20px 10px;
    text-align:center
}
.number-item+.number-item{
    border-left:1px solid #d7e3da
}
.number-item span{
    display:block;
    color:#607268;
    font-size:.88rem;
    font-weight:700
}
.number-item strong{
    display:block;
    margin-top:3px;
    color:#315843;
    font-size:1.8rem;
    line-height:1.25
}
.number-item small{
    margin-left:2px;
    font-size:.9rem;
    font-weight:600
}
 .facility-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:13px
}
.facility-group{
    padding:18px;
    border:1px solid #e7dcc3;
    border-radius:12px;
    background:#fff
}
.facility-group h3{
    margin:0 0 12px;
    color:#735d33;
    font-size:1rem
}
.facility-group ul{
    margin:0;
    padding:0;
    list-style:none
}
.facility-group li{
    display:flex;
    align-items:start;
    justify-content:space-between;
    gap:12px;
    padding:7px 0;
    color:#625a50;
    font-size:.87rem
}
.facility-group li+li{
    border-top:1px dashed #e9e1d2
}
.facility-group strong{
    color:var(--ink);
    white-space:nowrap
}
 .table-scroll{
    overflow-x:auto;
    border:1px solid var(--line);
    border-radius:12px
}
.table-scroll:focus{
    outline:3px solid rgba(184,74,47,.2)
}
table{
    width:100%;
    border-collapse:collapse
}
.staff-table{
    min-width:1050px
}
.staff-table th{
    padding:13px 12px;
    background:#f6f8fa;
    color:#314b61;
    border-bottom:1px solid #ccd6df;
    text-align:left;
    font-size:.88rem
}
.staff-table td{
    width:14.285%;
    padding:16px 12px;
    vertical-align:top
}
.staff-table td+td,.staff-table th+th{
    border-left:1px solid #e1e6eb
}
.staff-table td span{
    display:flex;
    justify-content:space-between;
    gap:9px;
    padding:5px 0;
    color:#5f6871;
    font-size:.82rem
}
.staff-table td span+span{
    border-top:1px dashed #e2e6ea
}
.staff-table td strong{
    color:#293d50;
    white-space:nowrap
}
.fee-table{
    min-width:680px
}
.fee-table th,.fee-table td{
    padding:14px 16px;
    border-bottom:1px solid #e8e1ec;
    text-align:left
}
.fee-table thead th{
    background:#faf8fc;
    color:#65497c;
    font-size:.88rem
}
.fee-table tbody th{
    color:#4b3d54
}
.fee-table td{
    color:#665c6c
}
.fee-table td:nth-child(3) strong{
    color:#684783
}
.fee-table tbody tr:last-child>*{
    border-bottom:0
}
.section-note{
    margin:12px 0 0;
    color:var(--muted);
    font-size:.82rem
}
 .location-section,.nearby-section{
    margin-top:40px
}
.location-section .section-heading p,.nearby-section .section-heading p{
    color:var(--orange-dark)
}
.map-card{
    position:relative;
    height:430px;
    overflow:hidden;
    border:1px solid #d8c9b6;
    border-radius:15px;
    background:#eee
}

#careHomeMap {
    width: 100%;
    height: 100%;
}

.map-address{
    position:absolute;
    left:18px;
    z-index: 10;
    bottom:18px;
    display:flex;
    max-width:calc(100% - 36px);
    flex-direction:column;
    padding:12px 15px;
    border-radius:10px;
    background:rgba(255,255,255,.96);
    box-shadow:0 4px 17px rgba(0,0,0,.17)
}

.map-address strong{
    color:var(--orange-dark)
}
.map-address span{
    color:var(--muted);
    font-size:.85rem
}
.text-link{
    color:var(--orange-dark);
    font-weight:800;
    text-decoration:none
}
.text-link:hover{
    text-decoration:underline
}
.nearby-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:13px
}
.nearby-card{
    display:flex;
    min-width:0;
    flex-direction:column;
    padding:17px;
    border:1px solid var(--line);
    border-radius:12px;
    text-decoration:none;
    transition:.18s
}
.nearby-card:hover{
    transform:translateY(-2px);
    border-color:#d3a879;
    box-shadow:0 10px 22px rgba(78,53,36,.08)
}
.nearby-card span{
    color:var(--orange-dark);
    font-size:.76rem;
    font-weight:800
}
.nearby-card strong{
    overflow:hidden;
    margin:5px 0 2px;
    text-overflow:ellipsis;
    white-space:nowrap
}
.nearby-card small{
    overflow:hidden;
    color:var(--muted);
    text-overflow:ellipsis;
    white-space:nowrap
}
.nearby-card em{
    margin-top:10px;
    color:#5e554f;
    font-size:.82rem;
    font-style:normal;
    font-weight:700
}
 .site-footer{
    background:#3c302b;
    color:#ede6df
}
.footer-inner{
    width:min(1180px,calc(100% - 40px));
    margin:auto;
    padding:46px 0;
    display:grid;
    grid-template-columns:280px 1fr;
    gap:55px
}
.footer-brand strong{
    font-size:1.3rem;
    color:#fff
}
.footer-brand p{
    margin:7px 0 0;
    color:#cbbfb7
}
.footer-info nav{
    display:flex;
    gap:20px;
    margin-bottom:16px
}
.footer-info nav a{
    font-weight:700;
    text-decoration:none;
    color:#fff
}
.footer-info address{
    font-style:normal;
    color:#d0c5be;
    font-size:.88rem;
    line-height:1.9
}
.notice{
    margin:15px 0 3px;
    color:#dbc6b8;
    font-size:.8rem
}
.copyright{
    margin:0;
    color:#9f928a;
    font-size:.8rem
}
 @media(max-width:980px){
    .header-inner{
        min-height:74px
    }
    .main-nav{
        display:none
    }
    .filter-grid{
        grid-template-columns:repeat(2,1fr)
    }
    .profile-info{
        grid-template-columns:repeat(2,1fr)
    }
    .profile-info .wide-info{
        grid-column:span 2
    }
    .number-grid{
        grid-template-columns:repeat(5,minmax(0,1fr))
    }
    .facility-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .nearby-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .footer-inner{
        grid-template-columns:1fr;
        gap:25px
    }
}
 @media(max-width:680px){
    .header-inner,.search-inner,.detail-container,.footer-inner{
        width:min(100% - 28px,1180px)
    }
    .brand-mark{
        width:43px;
        height:43px
    }
    .brand strong{
        font-size:1.08rem
    }
    .search-inner{
        padding:34px 0 30px
    }
    .search-section h1{
        font-size:2rem;
        margin-bottom:18px
    }
    .search-form{
        padding:14px;
        border-radius:15px
    }
    .primary-search{
        grid-template-columns:auto 1fr
    }
    .search-button{
        grid-column:1/-1;
        height:52px
    }
    .filter-grid{
        grid-template-columns:1fr
    }
    .service-filter{
        display:grid
    }
    .service-filter legend{
        float:none;
        margin:0;
        padding-bottom:3px
    }
    .profile-card,.info-section,.location-section,.nearby-section{
        padding:22px 17px
    }
    .profile-heading{
        flex-direction:column
    }
    .profile-info{
        grid-template-columns:1fr
    }
    .profile-info .wide-info{
        grid-column:auto
    }
    .number-grid{
        grid-template-columns:repeat(2,1fr)
    }
    .number-item+.number-item{
        border-left:0
    }
    .number-item:nth-child(even){
        border-left:1px solid #d7e3da
    }
    .number-item:nth-child(n+3){
        border-top:1px solid #d7e3da
    }
    .number-item:last-child{
        grid-column:1/-1
    }
    .facility-grid,.nearby-grid{
        grid-template-columns:1fr
    }
    .section-heading{
        align-items:flex-start
    }
    .section-heading .outline-button{
        font-size:.78rem;
        padding:8px 10px
    }
    .map-card{
        height:360px
    }
    .footer-info nav{
        flex-wrap:wrap;
        gap:9px 16px
    }
}
 @media(prefers-reduced-motion:reduce){
    *{
        scroll-behavior:auto!important;
        transition:none!important
    }
    .nearby-card:hover{
        transform:none
    }
}
 
#careHomeParking {
    white-space: pre-line;
}