/* Customer reservation page v065 */
:root{
    color-scheme:light;
    --brand:#6D91B6;
    --brand-dark:#456b93;
    --bg:#f5f7fb;
    --surface:#fff;
    --text:#111827;
    --muted:#5b6472;
    --border:#dce3ec;
    --danger:#b3261e;
    --success:#0a6b2b;
}
*{box-sizing:border-box}
html,body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}
body{
    margin:0;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.6;
    background:var(--bg);
    color:var(--text);
}
.public-header{
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    color:#fff;
    padding:2rem 1rem;
}
.public-header>div,.public-main{
    max-width:920px;
    margin:0 auto;
}
.eyebrow{
    margin:0 0 .25rem;
    font-weight:700;
    opacity:.9;
}
.public-header h1{
    margin:0;
    font-size:2rem;
}
.public-main{
    padding:1rem;
}
.public-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:1.25rem;
    padding:1.2rem;
    margin:1rem 0;
    box-shadow:0 12px 30px rgba(20,40,70,.07);
}
.public-card h2{
    margin-top:0;
}
.help-text{
    color:var(--muted);
    font-size:.95rem;
}
.public-form{
    display:grid;
    gap:1rem;
}
.condition-form{
    grid-template-columns:repeat(auto-fit,minmax(min(210px,100%),1fr));
    align-items:end;
}
.condition-form .public-choice-fieldset{
    grid-column:1 / -1;
}
label{
    display:grid;
    gap:.35rem;
    font-weight:700;
}
input,select,textarea,button{
    font:inherit;
}
input,select,textarea{
    width:100%;
    border:1px solid var(--border);
    border-radius:.8rem;
    padding:.75rem;
    background:#fff;
    color:var(--text);
}
textarea{resize:vertical}
button,.primary-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:3rem;
    border:0;
    border-radius:.9rem;
    padding:.75rem 1rem;
    background:var(--brand);
    color:#fff;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
}
button:disabled{
    opacity:.5;
    cursor:not-allowed;
}
.public-choice-fieldset{
    border:1px solid var(--border);
    border-radius:1rem;
    padding:1rem;
}
.public-choice-fieldset legend{
    font-weight:800;
    padding:0 .35rem;
}
.public-choice-row,.slot-grid{
    display:flex;
    gap:.55rem;
    flex-wrap:wrap;
}
.choice-pill,.slot-pill{
    display:inline-flex;
    cursor:pointer;
}
.choice-pill input,.slot-pill input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}
.choice-pill span,.slot-pill span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.35rem;
    min-height:2.8rem;
    border:1px solid var(--border);
    border-radius:999px;
    padding:.55rem .85rem;
    background:#fff;
    font-weight:800;
}
.choice-pill input:checked+span,.slot-pill input:checked+span{
    border-color:var(--brand);
    background:#edf4fb;
    color:#193b5d;
}
.slot-pill span{
    min-width:6.6rem;
    flex-direction:column;
    gap:.05rem;
}
.slot-pill small{
    color:var(--muted);
    font-weight:700;
}
.slot-pill.is-disabled{
    opacity:.45;
    cursor:not-allowed;
}
.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:1rem;
}
.error-box{
    border:1px solid #f0b7b3;
    background:#fff1f0;
    color:var(--danger);
    border-radius:.8rem;
    padding:.75rem;
    font-weight:700;
}
.success-mark{
    color:var(--success);
    font-weight:900;
    margin:0 0 .25rem;
}
.reservation-summary{
    display:grid;
    gap:.5rem;
    margin:1rem 0;
}
.reservation-summary div{
    display:grid;
    grid-template-columns:7rem 1fr;
    gap:.5rem;
    border-bottom:1px solid var(--border);
    padding:.55rem 0;
}
.reservation-summary dt{
    color:var(--muted);
    font-weight:800;
}
.reservation-summary dd{
    margin:0;
    font-weight:800;
}
@media (max-width:640px){
    .public-header h1{font-size:1.55rem}
    .condition-form,.form-grid{grid-template-columns:1fr}
    .public-card{border-radius:1rem;padding:1rem}
    .reservation-summary div{grid-template-columns:1fr}
}


/* v067 public assignment matching */
.assignment-rows{
    display:grid;
    gap:.85rem;
}
.assignment-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.75rem;
    align-items:end;
    border:1px solid var(--border);
    border-radius:1rem;
    padding:.85rem;
    background:#fbfcfe;
}
@media (max-width:640px){
    .assignment-row{
        grid-template-columns:1fr;
    }
}


/* v068 public reservation form order */
.form-section-title{
    margin:.5rem 0 -.25rem;
    font-size:1.05rem;
}


/* v071 reservation lookup */
.small-action-form{
    margin-top:.75rem;
}
.small-action-form button{
    background:#e9edf3;
    color:#111827;
}


/* v072 reservation lookup list */
.reservation-select-list{
    display:grid;
    gap:.75rem;
}
.lookup-select-card{
    display:grid;
    gap:.45rem;
    border:1px solid var(--border);
    border-radius:1rem;
    padding:.9rem;
    background:#fbfcfe;
}
.lookup-select-card span{
    color:var(--muted);
}


/* v085 reservation lookup session reset */
.public-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:.75rem;
    flex-wrap:wrap;
}
.secondary-link{
    background:#e9edf3;
    color:#111827;
}


/* v087 reservation agreements */
.agreement-box{
    display:grid;
    gap:.55rem;
    border:1px solid var(--border);
    border-radius:.9rem;
    padding:.85rem;
    background:#fbfcfe;
}
.agreement-box + .agreement-box{
    margin-top:.75rem;
}
.agreement-check{
    display:flex;
    align-items:flex-start;
    gap:.55rem;
    font-weight:800;
}
.agreement-check input{
    width:auto;
    margin-top:.3rem;
}
.agreement-content{
    margin-top:.5rem;
    max-height:14rem;
    overflow:auto;
    border:1px solid var(--border);
    border-radius:.75rem;
    padding:.75rem;
    background:#fff;
    white-space:normal;
}


/* v088 public page overflow/embed/link fixes */
img,svg,video,canvas,iframe{
    max-width:100%;
}
.public-header-actions{
    margin:.8rem 0 0;
}
.public-header-actions a{
    color:#fff;
    font-weight:800;
    text-underline-offset:.22em;
}
.public-button-row{
    display:flex;
    flex-wrap:wrap;
    gap:.65rem;
    margin-top:1rem;
}
.public-main,
.public-header>div{
    width:min(920px,100%);
}
.public-card{
    max-width:100%;
}
.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));
    gap:1rem;
}
.assignment-row{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));
    gap:1rem;
}
.is-embed{
    background:transparent;
}
.is-embed .public-main{
    padding:.25rem;
}
.is-embed .public-card{
    margin:.5rem 0;
    box-shadow:none;
}
.is-embed .public-header{
    display:none;
}
@media (max-width:640px){
    .public-main{
        padding:.75rem;
    }
    .public-card{
        padding:1rem;
        border-radius:1rem;
    }
    .condition-form{
        grid-template-columns:1fr;
    }
    button,.primary-link{
        width:100%;
    }
    .public-title-row{
        align-items:stretch;
    }
}


/* v100 public home/location pages */
.public-site{
    background:var(--bg);
}
.public-site-header{
    background:#fff;
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:20;
}
.public-site-header-inner{
    max-width:1120px;
    margin:0 auto;
    padding:.85rem 1rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
}
.public-site-brand{
    display:inline-flex;
    align-items:center;
    gap:.55rem;
    color:var(--text);
    text-decoration:none;
    font-weight:900;
    font-size:1.08rem;
}
.brand-mark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:2.25rem;
    height:2.25rem;
    border-radius:.8rem;
    background:var(--brand);
    color:#fff;
}
.public-site-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:.35rem;
    flex-wrap:wrap;
}
.public-site-nav a{
    color:var(--text);
    text-decoration:none;
    font-weight:800;
    padding:.55rem .75rem;
    border-radius:.75rem;
}
.public-site-nav a:hover,
.public-site-nav a:focus{
    background:#edf4fb;
    color:#193b5d;
}
.public-site-main{
    max-width:1120px;
    margin:0 auto;
    padding:1rem;
}
.public-hero{
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
    color:#fff;
    border-radius:1.35rem;
    padding:2rem;
    margin:1rem 0;
    box-shadow:0 16px 40px rgba(20,40,70,.13);
}
.public-hero h1{
    margin:.15rem 0 .7rem;
    font-size:clamp(1.8rem,4vw,3.2rem);
    line-height:1.18;
}
.public-hero p{
    max-width:720px;
    margin:.5rem 0;
}
.public-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:.65rem;
    margin-top:1.3rem;
}
.public-hero .primary-link{
    background:#fff;
    color:#193b5d;
}
.public-hero .secondary-link{
    background:rgba(255,255,255,.18);
    color:#fff;
    border:1px solid rgba(255,255,255,.45);
}
.public-info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:1rem;
}
.public-info-grid article{
    border:1px solid var(--border);
    border-radius:1rem;
    padding:1rem;
    background:#fbfcfe;
}
.public-info-grid article>i{
    font-size:1.65rem;
    color:var(--brand-dark);
}
.public-info-grid h2{
    margin:.45rem 0 .25rem;
    font-size:1.15rem;
}
.public-step-row{
    display:flex;
    flex-wrap:wrap;
    gap:.7rem;
}
.public-step-row span{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    padding:.65rem .85rem;
    border:1px solid var(--border);
    border-radius:999px;
    background:#fbfcfe;
    font-weight:800;
}
.location-page h1{
    margin:.1rem 0 .5rem;
    font-size:2rem;
}
.location-map-wrap{
    width:100%;
    margin:1rem 0;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:1rem;
    background:#fff;
}
.location-map-wrap .root_daum_roughmap{
    width:100%!important;
}
.location-info-list{
    display:grid;
    gap:.8rem;
    margin-top:1rem;
}
.location-info-list section{
    display:grid;
    grid-template-columns:minmax(10rem,14rem) 1fr;
    gap:1rem;
    align-items:start;
    border-top:1px solid var(--border);
    padding-top:.85rem;
}
.location-info-list h2{
    display:flex;
    align-items:center;
    gap:.65rem;
    margin:0;
    font-size:1.05rem;
}
.location-info-list h2 i{
    width:1.6rem;
    color:var(--brand-dark);
    text-align:center;
}
.location-info-list p{
    margin:0;
}
@media (max-width:720px){
    .public-site-header-inner{
        align-items:flex-start;
        flex-direction:column;
    }
    .public-site-nav{
        width:100%;
        justify-content:flex-start;
    }
    .public-site-nav a{
        padding:.45rem .6rem;
    }
    .public-hero{
        padding:1.35rem;
        border-radius:1.1rem;
    }
    .public-hero-actions .primary-link{
        width:100%;
    }
    .location-info-list section{
        grid-template-columns:1fr;
        gap:.4rem;
    }
}


/* v101 public footer and map link icons */
footer.site-footer{
    display:block;
    width:100%;
    margin:1.25rem 0 0;
    padding:0;
    background:#293a54;
    color:#fff;
    border-bottom:2px solid #00aeef;
    box-sizing:border-box;
}
footer.site-footer .site-footer-inner{
    max-width:1120px;
    margin:0 auto;
    padding:.85rem 1rem;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:1rem;
    box-sizing:border-box;
}
footer.site-footer .site-footer-logo-wrap{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
}
footer.site-footer img.site-footer-logo{
    display:block;
    max-width:180px;
    max-height:64px;
    width:auto;
    height:auto;
    object-fit:contain;
}
footer.site-footer .site-footer-text{
    min-width:0;
}
footer.site-footer p.footer-line,
footer.site-footer p{
    margin:.12rem 0;
    padding:0;
    color:#fff;
    font-size:.82rem;
    line-height:1.35;
    word-break:keep-all;
    overflow-wrap:anywhere;
}
footer.site-footer .footer-title{
    font-size:.86rem;
}
footer.site-footer .footer-copy{
    margin-top:.32rem;
    color:#e8e8e8;
    font-size:.76rem;
}
footer.site-footer a{
    color:#fff;
    text-decoration:underline;
    text-underline-offset:2px;
}
footer.site-footer span{
    margin:0 .18rem;
    color:#d9d9d9;
}
.location-map-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:2rem;
    height:2rem;
    margin-left:.35rem;
    vertical-align:middle;
    border-radius:.55rem;
    overflow:hidden;
}
.location-map-link img{
    display:block;
    width:2rem;
    height:2rem;
    object-fit:cover;
}
@media (max-width:720px){
    footer.site-footer .site-footer-inner{
        align-items:flex-start;
        justify-content:flex-start;
        flex-direction:column;
        gap:.45rem;
        padding:.75rem .85rem;
    }
    footer.site-footer img.site-footer-logo{
        max-width:150px;
        max-height:54px;
    }
    footer.site-footer p.footer-line,
    footer.site-footer p{
        font-size:.76rem;
        line-height:1.35;
    }
    footer.site-footer .footer-copy{
        font-size:.7rem;
    }
}


/* v104 public homepage layout/heading polish */
.public-site-header{
    background:rgba(255,255,255,.96);
    backdrop-filter:saturate(140%) blur(8px);
}
.public-site-brand-heading{
    margin:0;
    padding:0;
    font-size:1.08rem;
    line-height:1.2;
}
.public-site-main{
    max-width:none;
    width:100%;
    padding:0;
}
.public-hero{
    width:100%;
    margin:0;
    border-radius:0;
    box-shadow:none;
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
}
.public-hero-inner{
    max-width:1120px;
    margin:0 auto;
    padding:3.25rem 1rem;
}
.public-hero h2{
    margin:0 0 .8rem;
    font-size:clamp(2rem,4.5vw,3.8rem);
    line-height:1.12;
    letter-spacing:-.035em;
}
.public-hero p{
    max-width:760px;
    margin:.5rem 0;
    font-size:1.08rem;
}
.public-home-section{
    max-width:1120px;
    margin:1.25rem auto;
    padding:1.35rem;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:1.25rem;
    box-shadow:0 12px 30px rgba(20,40,70,.07);
}
.public-info-grid.public-home-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:1rem;
}
.public-home-guide{
    margin-bottom:2rem;
}
.public-site .public-card{
    max-width:1120px;
    margin:1.25rem auto;
}
@media (max-width:720px){
    .public-hero-inner{
        padding:2.25rem 1rem;
    }
    .public-hero h2{
        font-size:2rem;
    }
    .public-home-section{
        margin:.9rem;
        padding:1rem;
        border-radius:1rem;
    }
}


/* v105 public header semantics + full page reserve/lookup */
.public-site-brand-heading{
    margin:0;
    padding:0;
    font-size:1.08rem;
    line-height:1.2;
}
.public-site-brand-heading .public-site-brand{
    font:inherit;
}
.public-full-page{
    max-width:none;
    width:100%;
    padding:0;
}
.public-full-page::before{
    content:"";
    display:block;
    height:10rem;
    background:linear-gradient(135deg,var(--brand),var(--brand-dark));
}
.public-full-page > .public-card,
.public-full-page > .public-title-row,
.public-full-page > .success-mark,
.public-full-page > .error-box{
    max-width:1120px;
    margin-left:auto;
    margin-right:auto;
}
.public-full-page > .public-card:first-of-type{
    margin-top:-7rem;
}
.public-full-page .public-card{
    width:calc(100% - 2rem);
}
.public-reserve-page .condition-form{
    grid-template-columns:repeat(auto-fit,minmax(min(260px,100%),1fr));
}
.public-lookup-page .public-card{
    max-width:1120px;
}
@media (max-width:720px){
    .public-full-page::before{
        height:7rem;
    }
    .public-full-page > .public-card:first-of-type{
        margin-top:-4.5rem;
    }
    .public-full-page .public-card{
        width:calc(100% - 1.2rem);
    }
}


/* v106 reserve/lookup section layout */
.public-full-page{
    background:var(--bg);
}
.public-full-page::before{
    height:7.5rem;
}
.public-full-page .public-card.public-flow-section{
    width:min(1120px, calc(100% - 2rem));
    margin:0 auto 1.1rem;
    border-radius:0;
    border-left:0;
    border-right:0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    box-shadow:none;
    background:transparent;
    padding:1.35rem 0;
}
.public-full-page .public-card.public-flow-section:first-of-type{
    margin-top:-5.5rem;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:1.15rem;
    padding:1.35rem;
    box-shadow:0 12px 30px rgba(20,40,70,.08);
}
.public-full-page .public-card.public-flow-section + .public-card.public-flow-section{
    margin-top:0;
}
.public-full-page .public-flow-section h2{
    font-size:1.45rem;
    margin:0 0 1rem;
}
.public-full-page .public-flow-section .public-title-row h2{
    margin:0;
}
.public-full-page .public-flow-section .help-text{
    max-width:860px;
}
.public-full-page .public-form{
    gap:1.05rem;
}
.public-full-page .form-grid,
.public-full-page .condition-form{
    gap:1rem 1.1rem;
}
.public-full-page .public-choice-fieldset,
.public-full-page .assignment-row,
.public-full-page .agreement-box,
.public-full-page .lookup-select-card{
    background:var(--surface);
    box-shadow:0 8px 22px rgba(20,40,70,.045);
}
.public-full-page .slot-grid{
    padding:.35rem 0;
}
.public-full-page .error-box,
.public-full-page .success-mark{
    width:min(1120px, calc(100% - 2rem));
    margin:1rem auto;
}
.public-lookup-page > .public-card.public-flow-section:first-of-type,
.public-reserve-page > .public-card.public-flow-section:first-of-type{
    position:relative;
}
.public-lookup-page > .public-card.public-flow-section:nth-of-type(n+2){
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:1rem;
    padding:1.25rem;
}
.public-reserve-page > .public-card.public-flow-section:nth-of-type(n+2){
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:1rem;
    padding:1.25rem;
}
.public-full-page .reservation-summary{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:1rem;
    padding:.4rem 1rem;
}
.public-full-page .complete-card{
    background:var(--surface)!important;
}
@media (max-width:720px){
    .public-full-page::before{
        height:5.8rem;
    }
    .public-full-page .public-card.public-flow-section{
        width:calc(100% - 1rem);
        padding:1rem 0;
    }
    .public-full-page .public-card.public-flow-section:first-of-type{
        margin-top:-4rem;
        padding:1rem;
        border-radius:1rem;
    }
    .public-lookup-page > .public-card.public-flow-section:nth-of-type(n+2),
    .public-reserve-page > .public-card.public-flow-section:nth-of-type(n+2){
        padding:1rem;
    }
    .public-full-page .public-flow-section h2{
        font-size:1.25rem;
    }
}


/* v107 reserve/lookup true section layout */
.public-full-page{
    max-width:1120px;
    width:100%;
    margin:0 auto;
    padding:1.25rem 1rem 2rem;
    background:transparent;
}
.public-full-page::before{
    display:none!important;
    content:none!important;
}
.public-full-page .public-card.public-flow-section,
.public-full-page .public-card.public-flow-section:first-of-type,
.public-reserve-page > .public-card.public-flow-section:nth-of-type(n+2),
.public-lookup-page > .public-card.public-flow-section:nth-of-type(n+2){
    width:100%;
    margin:0 0 1.1rem;
    padding:1.35rem 0;
    border:0;
    border-top:1px solid var(--border);
    border-radius:0;
    box-shadow:none;
    background:transparent;
}
.public-full-page .public-card.public-flow-section:first-of-type{
    border-top:0;
    padding-top:1.1rem;
}
.public-full-page .public-flow-section h2{
    font-size:1.5rem;
    letter-spacing:-.025em;
}
.public-full-page .condition-form,
.public-full-page .public-form{
    background:transparent;
}
.public-full-page input,
.public-full-page select,
.public-full-page textarea{
    background:#fff;
}
.public-full-page .public-choice-fieldset,
.public-full-page .assignment-row,
.public-full-page .agreement-box,
.public-full-page .lookup-select-card,
.public-full-page .reservation-summary{
    background:#fff;
    border:1px solid var(--border);
    border-radius:1rem;
    box-shadow:0 8px 22px rgba(20,40,70,.045);
}
.public-full-page .public-title-row{
    margin-bottom:.75rem;
}
.public-full-page .public-title-row .primary-link{
    background:#e9edf3;
    color:#111827;
}
.public-full-page button[type="submit"]{
    max-width:22rem;
}
.public-full-page .error-box,
.public-full-page .success-mark{
    width:100%;
    margin:1rem 0;
}
.public-full-page .complete-card{
    background:transparent!important;
}
@media (max-width:720px){
    .public-full-page{
        padding:.8rem .8rem 1.5rem;
    }
    .public-full-page .public-card.public-flow-section,
    .public-full-page .public-card.public-flow-section:first-of-type,
    .public-reserve-page > .public-card.public-flow-section:nth-of-type(n+2),
    .public-lookup-page > .public-card.public-flow-section:nth-of-type(n+2){
        width:100%;
        padding:1rem 0;
    }
    .public-full-page button[type="submit"]{
        max-width:none;
        width:100%;
    }
}


/* v108 public page content */
.public-page-content{
    max-width:1120px;
    margin:1.25rem auto;
}
.public-page-content h1{
    margin:.15rem 0 1rem;
    font-size:clamp(1.8rem,3vw,2.6rem);
}
.public-page-body{
    line-height:1.8;
    word-break:keep-all;
    overflow-wrap:anywhere;
}


/* v109 public mobile hamburger menu */
.public-menu-toggle{
    display:none;
    align-items:center;
    justify-content:center;
    gap:.35rem;
    min-height:2.75rem;
    border:1px solid var(--border);
    border-radius:.85rem;
    padding:.55rem .85rem;
    background:#fff;
    color:var(--text);
    font-weight:900;
}
@media (max-width:760px){
    .public-site-header-inner{
        display:grid;
        grid-template-columns:1fr auto;
        align-items:center;
        gap:.75rem;
    }
    .public-menu-toggle{
        display:inline-flex;
        width:auto;
    }
    .public-site-nav{
        grid-column:1 / -1;
        display:none!important;
        width:100%;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:.25rem;
        padding:.65rem 0 0;
        border-top:1px solid var(--border);
    }
    .public-site-nav.is-open{
        display:flex!important;
    }
    .public-site-nav a{
        display:flex;
        align-items:center;
        min-height:2.75rem;
        padding:.65rem .75rem;
        border-radius:.75rem;
        font-size:1rem;
    }
    .public-site-brand-heading{
        min-width:0;
    }
    .public-site-brand{
        min-width:0;
    }
}


/* v112 footer admin login link */
footer.site-footer .footer-admin-login-link{
    opacity:.78;
}
footer.site-footer .footer-admin-login-link:hover,
footer.site-footer .footer-admin-login-link:focus{
    opacity:1;
}


/* v112 site logo/browser icon/page content */
.public-brand-logo{
    display:block;
    max-width:220px;
    max-height:58px;
    width:auto;
    height:auto;
    object-fit:contain;
}
.public-page-body img{
    max-width:100%;
    height:auto;
}
.public-page-body table{
    width:100%;
    border-collapse:collapse;
}
.public-page-body th,
.public-page-body td{
    border:1px solid var(--border);
    padding:.55rem;
}
@media (max-width:760px){
    .public-brand-logo{
        max-width:170px;
        max-height:48px;
    }
}


/* v113 header logo image exact replacement */
.public-site-brand:has(.public-brand-logo){
    gap:0;
}
.public-brand-logo{
    display:block;
    max-width:220px;
    max-height:58px;
    width:auto;
    height:auto;
    object-fit:contain;
}
@media (max-width:760px){
    .public-brand-logo{
        max-width:170px;
        max-height:48px;
    }
}


/* v115 heading hierarchy and main banner wording */
.public-hero .public-hero-slogan{
    margin:0 0 .8rem;
    font-size:clamp(2rem,4.5vw,3.8rem);
    line-height:1.12;
    letter-spacing:-.035em;
    font-weight:900;
}
.public-hero .public-hero-greeting{
    max-width:760px;
    margin:.5rem 0;
    font-size:1.08rem;
}
.public-page-content h2,
.location-page h2:first-of-type{
    margin:.1rem 0 1rem;
    font-size:clamp(1.8rem,3vw,2.6rem);
    line-height:1.2;
}
@media (max-width:720px){
    .public-hero .public-hero-slogan{
        font-size:2rem;
    }
}


/* v116 main banner slogan size adjustment */
.public-hero .public-hero-slogan{
    font-size:1.8rem!important;
    line-height:1.35!important;
    letter-spacing:-.025em!important;
    max-width:820px;
}
.public-hero .public-hero-greeting{
    font-size:1rem!important;
    line-height:1.7!important;
    max-width:820px;
}
@media (max-width:720px){
    .public-hero .public-hero-slogan{
        font-size:1.45rem!important;
        line-height:1.35!important;
    }
    .public-hero .public-hero-greeting{
        font-size:.98rem!important;
    }
}


/* v118 mobile footer simplification */
@media (max-width:720px){
    footer.site-footer .site-footer-inner{
        gap:.8rem;
        padding:1.25rem 1rem;
    }
    footer.site-footer .site-footer-logo-wrap{
        width:100%;
        justify-content:flex-start;
    }
    footer.site-footer img.site-footer-logo{
        max-width:170px;
        max-height:72px;
    }
    footer.site-footer .footer-title,
    footer.site-footer .site-footer-text p.footer-line:nth-of-type(2){
        display:none!important;
    }
    footer.site-footer .footer-links{
        display:flex;
        flex-wrap:wrap;
        gap:.45rem .55rem;
        font-size:.88rem!important;
    }
    footer.site-footer .footer-links span{
        display:none;
    }
    footer.site-footer .footer-copy{
        font-size:.86rem!important;
        line-height:1.45!important;
    }
}


/* v144 therapist profiles */
.therapist-profile-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:1rem;
    margin-top:1rem;
}
.therapist-profile-card{
    border:1px solid #d8e0ec;
    border-radius:1rem;
    overflow:hidden;
    background:#fff;
    box-shadow:0 8px 24px rgba(15,23,42,.06);
}
.therapist-profile-image-wrap{
    background:#f3f6fb;
    aspect-ratio:4/3;
    display:flex;
    align-items:center;
    justify-content:center;
}
.therapist-profile-image{
    width:100%;
    height:100%;
    object-fit:cover;
}
.therapist-profile-content{
    padding:1rem;
}
.therapist-profile-content h3{
    margin:.1rem 0 .25rem;
    font-size:1.25rem;
}
.therapist-profile-meta{
    margin:.1rem 0 .6rem;
    color:#667085;
    font-size:.92rem;
}
.therapist-profile-title{
    margin:.35rem 0;
    font-weight:800;
}
.therapist-profile-intro{
    margin:.5rem 0 0;
    line-height:1.65;
}
.public-page-lead{
    color:#667085;
}


/* v145 reviews */
.public-action-link{
    display:inline-block;
    padding:.65rem 1rem;
    border-radius:.65rem;
    background:#2f6ea7;
    color:#fff!important;
    text-decoration:none;
    font-weight:800;
}
.review-list{
    display:grid;
    gap:1rem;
    margin-top:1rem;
}
.review-card{
    border:1px solid #d8e0ec;
    border-radius:1rem;
    padding:1rem;
    background:#fff;
    box-shadow:0 8px 24px rgba(15,23,42,.05);
}
.review-card-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:1rem;
}
.review-card h3{
    margin:.1rem 0 .2rem;
}
.review-meta{
    margin:.1rem 0;
    color:#667085;
    font-size:.92rem;
}
.review-rating{
    white-space:nowrap;
    font-weight:900;
    color:#b45309;
}
.review-text{
    margin:.8rem 0;
    line-height:1.7;
}
.review-translate-form{
    display:flex;
    align-items:end;
    gap:.5rem;
    flex-wrap:wrap;
    margin-top:.75rem;
}
.review-translate-form label{
    margin:0;
}
.review-translated-text{
    margin-top:.75rem;
    padding:.8rem;
    border-radius:.65rem;
    background:#f3f6fb;
    border:1px solid #d8e0ec;
}
.rating-radio-row{
    display:flex;
    flex-wrap:wrap;
    gap:.7rem;
}
@media(max-width:640px){
    .review-card-header{
        display:block;
    }
    .review-rating{
        margin-top:.35rem;
    }
}
