:root {
    --boss-black: #0e110f;
    --boss-ink: #171b18;
    --boss-muted: #6f7772;
    --boss-line: #e4e8e5;
    --boss-soft: #f4f6f4;
    --boss-lime: #c8f31d;
}

/* 크롬 자동완성은 유지하되 브라우저가 강제로 넣는 배경색만 흰색으로 통일합니다. */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-text-fill-color: var(--boss-ink) !important;
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    caret-color: var(--boss-ink);
    transition: background-color 9999s ease-out 0s;
}

.boss-site-header,
.boss-site-header * {
    box-sizing: border-box;
}

.boss-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 88px;
    background: var(--boss-black);
    color: #fff;
    font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
    transform: translateY(0);
    transition: transform .26s ease, box-shadow .26s ease;
    will-change: transform;
}

.boss-site-header.is-main {
    position: fixed;
    inset: 0 0 auto;
    background: rgba(9, 11, 10, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
}

.boss-site-header.is-scroll-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.boss-header-inner {
    display: flex;
    align-items: center;
    gap: 42px;
    width: min(1440px, calc(100% - 64px));
    height: 100%;
    margin: 0 auto;
}

.boss-site-header a {
    color: inherit;
    text-decoration: none;
}

.boss-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 210px;
}

.boss-brand-symbol {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--boss-lime);
    color: var(--boss-black);
    font-size: 20px;
    font-weight: 950;
}

.boss-brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.boss-brand-name b {
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -.06em;
}

.boss-brand-name small {
    margin-top: 5px;
    color: #89908c;
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .13em;
}

.boss-desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 1.8vw, 32px);
    margin-left: auto;
}

.boss-desktop-nav a {
    position: relative;
    color: #aeb4b0;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.boss-desktop-nav a:hover,
.boss-desktop-nav a.active {
    color: #fff;
}

.boss-desktop-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -13px;
    height: 2px;
    background: var(--boss-lime);
}

.boss-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 14px;
}

.boss-header-member-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.boss-header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    background: transparent;
    color: #b7bdb9 !important;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.boss-header-action:hover {
    border-color: rgba(255, 255, 255, .32);
    color: #fff !important;
}

.boss-header-admin {
    border-color: rgba(200, 243, 29, .32);
    color: var(--boss-lime) !important;
}

.boss-booking-check {
    min-width: 154px;
    border-color: rgba(255, 255, 255, .2);
    background: #242925;
    color: #fff !important;
}

.boss-header-booking {
    min-width: 116px;
    border-color: var(--boss-lime);
    background: var(--boss-lime);
    color: var(--boss-black) !important;
    font-weight: 950;
}

.boss-header-booking:hover {
    border-color: #d9ff43;
    background: #d9ff43;
    color: var(--boss-black) !important;
}

.boss-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.boss-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.boss-menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.boss-menu-button.is-open span:nth-child(2) { opacity: 0; }
.boss-menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.boss-mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 24px;
    background: #151916;
    border-top: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.boss-mobile-menu-open { overflow: hidden; }
.boss-mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 990;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(5, 7, 6, .62);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.boss-mobile-nav-backdrop[hidden] { display: none; }
.boss-mobile-nav[hidden] { display: none; }
.boss-mobile-nav nav { display: grid; }
.boss-mobile-nav nav a { padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 16px; font-weight: 850; }
.boss-mobile-contact-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin-top: 18px; }
.boss-mobile-contact-actions a,
.boss-mobile-contact-actions button { display: flex; min-width: 0; min-height: 58px; padding: 8px 4px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; border: 0; border-radius: 11px; background: #252b27; color: #fff; text-decoration: none; font: inherit; cursor: pointer; }
.boss-mobile-contact-actions span { font-size: 15px; line-height: 1; }
.boss-mobile-contact-actions b { font-size: 11px; font-weight: 900; line-height: 1.15; white-space: nowrap; }
.boss-mobile-contact-actions button { background: #fee500; color: var(--boss-black); }
.boss-mobile-contact-actions .boss-mobile-contact-booking { background: var(--boss-lime); color: var(--boss-black); }
.boss-mobile-actions { margin-top: 8px; }
.boss-mobile-actions a { display: flex; min-height: 44px; align-items: center; justify-content: center; border-radius: 11px; background: #252b27; color: #c7cdc9; font-size: 12px; font-weight: 900; }
.boss-member-links { display: flex; justify-content: flex-end; gap: 15px; margin-top: 18px; color: #8f9691; font-size: 12px; }
.boss-member-links a { color: inherit; }

.boss-site-main {
    display: block;
    min-height: 50vh;
}

/*
 * Optional shared bottom CTA
 * Hidden by default. A page opts in with $boss_show_reserve_cta = true.
 */
.boss-reserve-cta,
.boss-reserve-cta * {
    box-sizing: border-box;
}

.boss-reserve-cta {
    padding: 96px 0;
    background: #fff;
    font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.boss-reserve-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: end;
    gap: 72px;
    width: min(1440px, calc(100% - 64px));
    min-height: 420px;
    margin: 0 auto;
    padding: 78px 86px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--boss-black);
    color: #fff;
}

.boss-reserve-cta-copy > span {
    display: block;
    margin-bottom: 22px;
    color: var(--boss-lime);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
}

.boss-reserve-cta-copy > strong {
    display: block;
    font-size: clamp(46px, 4.8vw, 72px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.065em;
    word-break: keep-all;
}

.boss-reserve-cta-copy > p {
    max-width: 680px;
    margin: 30px 0 0;
    color: #9ca49f;
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
}

.boss-reserve-cta-button {
    display: flex;
    width: 100%;
    min-height: 68px;
    padding: 0 25px;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    background: var(--boss-lime);
    color: var(--boss-black) !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 950;
}

.boss-reserve-cta-button:hover {
    background: #d9ff43;
    color: var(--boss-black) !important;
}

.boss-reserve-cta-button i {
    font-size: 23px;
    font-style: normal;
    line-height: 1;
}

.boss-site-footer {
    background: var(--boss-black);
    color: rgba(255, 255, 255, .62);
    font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.boss-footer-inner {
    display: grid;
    grid-template-columns: 1.35fr 1fr .78fr 1fr 1fr;
    gap: 36px;
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: 74px 0 50px;
}

.boss-footer-title {
    display: block;
    margin: 0 0 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.boss-footer-brand .boss-footer-title { font-size: 28px; }
.boss-footer-block p { margin: 0; font-size: 13px; line-height: 1.9; }
.boss-footer-block p + p { margin-top: 8px; }
.boss-footer-block a { color: inherit; text-decoration: none; }
.boss-footer-contact a { display: block; color: #fff; font-size: 25px; font-weight: 900; letter-spacing: -.02em; }
.boss-footer-contact-block { grid-column: -2 / -1; text-align: right; }
.boss-footer-contact a + a { margin-top: 5px; }
.boss-footer-family-links { display: grid; gap: 10px; }
.boss-footer-family-links a { display: block; min-width: 0; color: rgba(255, 255, 255, .7); font-size: 13px; line-height: 1.5; }
.boss-footer-family-links a:hover { color: #fff; }
.boss-footer-family-links span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.boss-footer-business {
    display: flex;
    gap: 32px;
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: 24px 0;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.boss-footer-business > strong { flex: 0 0 auto; color: #fff; font-size: 13px; font-weight: 900; }
.boss-footer-business dl { display: flex; min-width: 0; flex-wrap: nowrap; align-items: center; gap: 0; margin: 0; }
.boss-footer-business dl > div { display: flex; min-width: 0; align-items: center; gap: 7px; }
.boss-footer-business dl > div + div::before { content: ""; width: 1px; height: 11px; margin: 0 18px; background: rgba(255, 255, 255, .16); }
.boss-footer-business dt { margin: 0; color: rgba(255, 255, 255, .4); font-size: 10px; font-weight: 800; white-space: nowrap; }
.boss-footer-business dd { margin: 0; color: rgba(255, 255, 255, .76); font-size: 12px; line-height: 1.5; white-space: nowrap; }
.boss-footer-business dd a { color: inherit; text-decoration: none; }

.boss-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: 23px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: 11px;
}

.boss-footer-policies {
    display: grid;
    justify-items: start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.9;
}
.boss-footer-policies a { color: inherit; text-decoration: none; }

.boss-contact-dock,
.boss-contact-dock * { box-sizing: border-box; }

.boss-contact-dock {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 1190;
    display: grid;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.boss-contact-dock.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.boss-contact-action {
    display: flex;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(14, 17, 15, .12);
    border-radius: 13px;
    background: #fff;
    color: var(--boss-black);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .13);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: width .22s ease, box-shadow .22s ease, transform .22s ease;
}

.boss-contact-action:hover,
.boss-contact-action:focus-visible {
    width: 162px;
    color: var(--boss-black);
    box-shadow: 0 11px 28px rgba(0, 0, 0, .18);
    transform: translateX(-1px);
}

.boss-contact-action:focus-visible { outline: 2px solid var(--boss-black); outline-offset: 3px; }
.boss-contact-kakao { border-color: #fee500; background: #fee500; }
.boss-contact-label { flex: 0 0 auto; padding: 0 10px 0 15px; font-size: 13px; font-weight: 900; letter-spacing: -.02em; }
.boss-contact-icon { display: grid; flex: 0 0 45px; width: 45px; height: 45px; place-items: center; }
.boss-contact-icon svg { width: 20px; height: 20px; fill: currentColor; }

.boss-modal-open { overflow: hidden; }
.boss-policy-modal,
.site-content-modal { position: fixed; inset: 0; z-index: 3000; }
.boss-policy-modal[hidden],
.site-content-modal[hidden] { display: none; }
.boss-policy-dim,
.site-content-modal-backdrop { position: absolute; inset: 0; background: rgba(5, 7, 6, .72); backdrop-filter: blur(4px); }
.boss-policy-panel,
.site-content-modal-panel { position: relative; z-index: 1; width: min(760px, calc(100% - 32px)); max-height: min(760px, calc(100vh - 40px)); margin: 20px auto; overflow: auto; border-radius: 22px; background: #fff; color: var(--boss-ink); box-shadow: 0 28px 90px rgba(0, 0, 0, .3); }
.boss-policy-panel > header,
.site-content-modal-head { position: sticky; top: 0; display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 0 26px; border-bottom: 1px solid var(--boss-line); background: #fff; }
.boss-policy-panel h2,
.site-content-modal-head strong { margin: 0; font-size: 20px; font-weight: 900; }
.boss-policy-panel button,
.site-content-modal-close { width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; background: var(--boss-soft); color: var(--boss-ink); font-size: 25px; cursor: pointer; }
.boss-policy-body,
.site-content-modal-body { padding: 28px 26px 38px; color: #4f5752; font-size: 14px; line-height: 1.9; white-space: pre-wrap; }

@media (max-width: 1160px) {
    .boss-desktop-nav { gap: 18px; }
    .boss-desktop-nav a { font-size: 12px; }
    .boss-header-member-actions,
    .boss-booking-check { display: none; }
    .boss-header-actions { margin-left: 0; }
    .boss-footer-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .boss-footer-brand { grid-column: span 2; }
    .boss-footer-contact-block { text-align: right; }
    .boss-footer-business { gap: 20px; }
    .boss-footer-business dl > div + div::before { margin: 0 12px; }
}

@media (max-width: 860px) {
    .boss-site-header { height: 76px; }
    .boss-header-inner { width: min(100% - 40px, 720px); }
    .boss-desktop-nav,
    .boss-header-actions { display: none; }
    .boss-menu-button { display: block; margin-left: auto; }
    .boss-footer-inner,
    .boss-footer-bottom,
    .boss-footer-business { width: min(100% - 40px, 720px); }
    .boss-footer-inner { grid-template-columns: 1fr 1fr; }
    .boss-footer-brand { grid-column: span 2; }
    .boss-footer-business { align-items: flex-start; }
    .boss-footer-business dl { flex-wrap: wrap; row-gap: 8px; }
    .boss-reserve-cta { padding: 72px 0; }
    .boss-reserve-cta-card {
        grid-template-columns: 1fr;
        gap: 42px;
        width: min(100% - 40px, 720px);
        min-height: 0;
        padding: 60px 52px;
    }
    .boss-reserve-cta-button { width: min(100%, 320px); }
    .boss-contact-dock { display: none; }
}

@media (max-width: 640px) {
    .boss-site-header { height: 68px; }
    .boss-header-inner { width: calc(100% - 32px); }
    .boss-brand { min-width: 0; }
    .boss-brand-symbol { width: 34px; height: 34px; border-radius: 10px; }
    .boss-brand-name b { font-size: 22px; }
    .boss-footer-inner,
    .boss-footer-bottom,
    .boss-footer-business { width: calc(100% - 32px); }
    .boss-reserve-cta { padding: 52px 0; }
    .boss-reserve-cta-card {
        width: calc(100% - 32px);
        gap: 32px;
        padding: 42px 24px;
        border-radius: 24px;
    }
    .boss-reserve-cta-copy > span { margin-bottom: 15px; font-size: 10px; }
    .boss-reserve-cta-copy > strong { font-size: 38px; }
    .boss-reserve-cta-copy > p { margin-top: 21px; font-size: 14px; }
    .boss-reserve-cta-button { width: 100%; min-height: 62px; }
    .boss-footer-inner { grid-template-columns: 1fr; gap: 38px; padding: 54px 0 38px; text-align: center; }
    .boss-footer-brand { grid-column: auto; }
    .boss-footer-contact-block { grid-column: auto; text-align: center; }
    .boss-footer-business { display: block; padding: 22px 0; text-align: left; }
    .boss-footer-business > strong { display: block; margin-bottom: 12px; }
    .boss-footer-business dl { display: flex; flex-wrap: wrap; gap: 7px 0; }
    .boss-footer-business dl > div + div::before { margin: 0 10px; }
    .boss-footer-bottom { display: block; padding: 20px 0; text-align: center; }
    .boss-footer-policies { justify-items: center; margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .boss-site-header { transition: none; }
}
