/* =====================================================================
   StillFrame — "Ask Dani" concierge (shared across public pages)
   Messenger UI: Home / Messages / Help tabs. Palette: gold #b09b80 /
   deep #8a6d3b, espresso #2b2420 / #15110e, cream #faf7f2 / #f3ede4.
   ===================================================================== */
:root {
    --cc-gold: #b09b80;
    --cc-gold-deep: #8a6d3b;
    --cc-ink: #2b2420;
    --cc-ink-deep: #15110e;
    --cc-cream: #faf7f2;
    --cc-cream-2: #f3ede4;
    --cc-grey: #5e544f;
}

.sf-cc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border: 1px solid rgba(176, 155, 128, 0.48);
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(176, 155, 128, 0.16));
    color: var(--cc-gold-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 6px 14px rgba(20, 16, 13, 0.1);
    font-size: 0.72rem;
    line-height: 1;
}
.sf-cc-icon i { line-height: 1; }
.sf-cc-icon-inline {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    margin-left: 4px;
    vertical-align: -3px;
}

/* ---------- Launcher ---------- */
.sf-global-cc-launch {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px 7px 7px;
    border: 1px solid rgba(176, 155, 128, 0.55);
    border-radius: 999px;
    background: linear-gradient(135deg, #2b2420, #15110e);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    color: #fff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.26s ease, box-shadow 0.26s ease;
}
@keyframes sfCcGlow {
    0%, 100% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32), 0 0 0 0 rgba(176, 155, 128, 0.45); }
    50% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32), 0 0 0 8px rgba(176, 155, 128, 0); }
}
.sf-global-cc-launch:hover { transform: translateY(-3px); }
.sf-global-cc-launch:active { transform: scale(0.96); }
.sf-global-cc-launch.is-hidden,
.sf-global-cc-launch.is-unavailable { opacity: 0; pointer-events: none; transform: translateY(12px) scale(0.9); }
.sf-global-cc-avatar {
    position: relative !important;
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    flex: 0 0 40px !important;
    overflow: hidden !important;
    border: 2px solid var(--cc-gold);
    border-radius: 50%;
    box-sizing: border-box;
}
.sf-global-cc-avatar img {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: cover !important;
    display: block !important;
    transform: none !important;
    border-radius: 0 !important;
}
#sf-global-cc-root .sf-global-cc-avatar,
#sf-global-cc-panel .sf-global-cc-avatar {
    display: block !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    contain: layout paint !important;
}
#sf-global-cc-root .sf-global-cc-avatar > img,
#sf-global-cc-panel .sf-global-cc-avatar > img,
#sf-global-cc-root .sf-cc-hero-avatar > img,
#sf-global-cc-panel .sf-cc-hero-avatar > img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    animation: none !important;
    filter: none !important;
}
.sf-global-cc-avatar::after { content: ""; position: absolute; right: 0; bottom: 0; width: 11px; height: 11px; border: 2px solid var(--cc-ink-deep); border-radius: 50%; background: #4ade80; }
.sf-global-cc-launch-text { font-family: Lato, Arial, sans-serif; font-size: 0.9rem; font-weight: 900; letter-spacing: 0.2px; white-space: nowrap; }

/* ---------- Panel shell ---------- */
.sf-global-cc-panel {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 400px;
    max-width: calc(100vw - 28px);
    height: min(780px, calc(100vh - 36px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 252, 247, 0.72), rgba(243, 237, 228, 0.58));
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow: 0 44px 110px rgba(20, 16, 13, 0.38), 0 2px 8px rgba(20, 16, 13, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 0 28px rgba(255, 255, 255, 0.14);
    isolation: isolate;
    will-change: transform, opacity;
    opacity: 0;
    pointer-events: none;
    transform: translateY(34px) scale(0.96);
    transform-origin: bottom right;
    transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.24s ease;
}
.sf-global-cc-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.sf-global-cc-panel.is-unavailable { display: none; }

body.sf-cc-booking-focus::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    background:
        radial-gradient(circle at 50% 42%, rgba(176, 155, 128, 0.24), rgba(176, 155, 128, 0) 42%),
        rgba(21, 17, 14, 0.42);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    animation: sfCcFocusFade 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.sf-cc-booking-focus .glass-mind-nav,
body.sf-cc-booking-focus .premium-mobile-nav,
body.sf-cc-booking-focus .nav-trigger-pill,
body.sf-cc-booking-focus .mobile-top-bar,
body.sf-cc-booking-focus .liquid-dock-container,
body.sf-cc-booking-focus .sf-mobile-hud,
body.sf-cc-booking-focus .sf-tabbar {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-18px) scale(0.98) !important;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
}

.sf-global-cc-panel.is-open.is-booking-focus {
    right: 50%;
    bottom: 50%;
    z-index: 10000;
    width: min(920px, calc(100vw - 48px));
    height: min(860px, calc(100vh - 48px));
    max-width: calc(100vw - 48px);
    border-radius: 28px;
    transform: translate(50%, 50%) scale(1);
    transform-origin: center;
    box-shadow:
        0 60px 160px rgba(20, 16, 13, 0.58),
        0 0 0 1px rgba(255, 255, 255, 0.42),
        0 0 90px rgba(176, 155, 128, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 0 70px rgba(255, 255, 255, 0.16);
    animation: sfCcBookingExpand 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sf-global-cc-panel.is-booking-focus::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,0.16), rgba(255,255,255,0) 34%);
}

.sf-global-cc-panel.is-booking-focus > * {
    position: relative;
    z-index: 1;
}

@keyframes sfCcFocusFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sfCcBookingExpand {
    0% { opacity: 0.72; transform: translate(50%, 50%) scale(0.72); filter: blur(3px); }
    58% { opacity: 1; transform: translate(50%, 50%) scale(1.025); filter: blur(0); }
    100% { opacity: 1; transform: translate(50%, 50%) scale(1); filter: blur(0); }
}

/* ---------- Views ---------- */
.sf-cc-views { position: relative; flex: 1 1 auto; min-height: 0; overflow: hidden; }
.sf-cc-view {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.sf-cc-view.is-active { opacity: 1; visibility: visible; transform: none; }

/* ---------- Shared header (messages + help) ---------- */
.sf-global-cc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    color: #fff;
    background: linear-gradient(135deg, rgba(43, 36, 32, 0.58), rgba(21, 17, 14, 0.5));
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    flex: 0 0 auto;
}
.sf-global-cc-id { display: flex; align-items: center; gap: 11px; min-width: 0; }
.sf-global-cc-meta { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; font-family: Lato, Arial, sans-serif; }
.sf-global-cc-meta strong { font-size: 1rem; font-weight: 900; }
.sf-global-cc-meta span { color: var(--cc-gold); font-size: 0.72rem; font-weight: 800; }
.sf-cc-help-head { color: #fff; font-family: Lato, Arial, sans-serif; }
.sf-cc-help-head strong { font-size: 1.05rem; font-weight: 900; }
.sf-global-cc-head-btns { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.sf-global-cc-reset,
.sf-global-cc-close {
    width: 36px; height: 36px; flex: 0 0 36px;
    border: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff; cursor: pointer; font-size: 1.15rem; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, transform 0.15s ease;
}
.sf-global-cc-reset { font-size: 1.05rem; }
.sf-global-cc-reset:hover, .sf-global-cc-close:hover { background: rgba(255, 255, 255, 0.28); }
.sf-global-cc-reset:active, .sf-global-cc-close:active { transform: scale(0.9); }

/* ---------- HOME view ---------- */
.sf-cc-hero {
    position: relative;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    padding: 16px 48px 22px 16px;
    color: #fff;
    background: linear-gradient(150deg, rgba(43, 36, 32, 0.58) 0%, rgba(21, 17, 14, 0.5) 70%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    text-align: left;
}
#sf-cc-home-close {
    position: absolute !important;
    top: 15px !important;
    right: 16px !important;
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
    z-index: 4;
}
.sf-cc-hero-avatar {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    flex: 0 0 40px !important;
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
}
.sf-cc-hero-title { grid-column: 2; grid-row: 1; margin: 0 0 2px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.32rem; line-height: 1.05; font-weight: 700; }
.sf-cc-hero-sub { grid-column: 2; grid-row: 2; margin: 0; font-family: Lato, Arial, sans-serif; font-size: 0.86rem; line-height: 1.12; color: rgba(255, 255, 255, 0.82); max-width: none; }
.sf-cc-home-body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, rgba(243, 237, 228, 0.14), rgba(250, 247, 242, 0.08));
    padding: 0 16px 18px;
    text-align: left;
}
.sf-cc-home-msg {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    width: 100%;
    margin: 8px 0 12px;
    padding: 12px 14px;
    border: 1px solid rgba(176, 155, 128, 0.3);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 12px 30px rgba(20, 16, 13, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.sf-cc-home-msg:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(20, 16, 13, 0.16); }
.sf-cc-home-msg:active { transform: scale(0.99); }
.sf-cc-home-msg-txt { display: flex; flex-direction: column; gap: 2px; font-family: Lato, Arial, sans-serif; }
.sf-cc-home-msg-txt strong { font-size: 0.98rem; font-weight: 900; color: var(--cc-ink); }
.sf-cc-home-msg-txt small { font-size: 0.78rem; color: var(--cc-grey); }
.sf-cc-home-msg-ic { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #b09b80, #8a6d3b); color: #fff; font-size: 1rem; }
.sf-cc-home-cards { display: flex; flex-direction: column; gap: 9px; }
.sf-cc-home-card {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(176, 155, 128, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--cc-ink);
    text-decoration: none;
    cursor: pointer;
    font-family: Lato, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.sf-cc-home-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20, 16, 13, 0.1); border-color: var(--cc-gold); }
.sf-cc-home-card:active { transform: scale(0.99); }
.sf-cc-home-card-ic {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 0.78rem;
}
.sf-cc-home-card-label { flex: 1 1 auto; font-size: 0.9rem; font-weight: 800; text-align: left; }
.sf-cc-home-card-arrow { color: var(--cc-gold-deep); font-size: 1.3rem; font-weight: 700; }

/* ---------- Availability badge (Home hero) ---------- */
.sf-cc-avail-badge {
    grid-column: 1 / -1;
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 14px; padding: 7px 13px;
    border-radius: 999px; background: rgba(74, 222, 128, 0.14); border: 1px solid rgba(74, 222, 128, 0.4);
    color: #d6f5dd; font-family: Lato, Arial, sans-serif; font-size: 0.76rem; font-weight: 800;
}
.sf-cc-avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25); }

/* ---------- Estimator slider (Home) ---------- */
.sf-cc-est {
    margin: 0 0 14px;
    padding: 16px;
    border: 1px solid rgba(176, 155, 128, 0.3);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.42), rgba(251, 247, 241, 0.28));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 22px rgba(20, 16, 13, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    font-family: Lato, Arial, sans-serif;
    text-align: left;
}
.sf-cc-est-top { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px; margin-bottom: 12px; text-align: left; }
.sf-cc-est-cap { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cc-grey); }
.sf-cc-est-rec { font-size: 0.82rem; line-height: 1.25; font-weight: 950; color: var(--cc-ink); }
.sf-cc-est-price { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--cc-gold-deep); line-height: 1; }
.sf-cc-est-slider {
    -webkit-appearance: none; appearance: none; width: 100%; height: 7px; border-radius: 999px;
    background: linear-gradient(90deg, #b09b80 30%, #e7ded2 30%); outline: none; cursor: pointer; margin: 6px 0 10px;
}
.sf-cc-est-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--cc-gold-deep); box-shadow: 0 2px 8px rgba(20, 16, 13, 0.25); cursor: pointer; }
.sf-cc-est-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--cc-gold-deep); cursor: pointer; }
.sf-cc-est-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; justify-content: flex-start; font-size: 0.82rem; font-weight: 800; color: var(--cc-ink); margin-bottom: 13px; text-align: left; }
.sf-cc-est-pkg { color: var(--cc-gold-deep); }
.sf-cc-est-breakdown {
    display: grid;
    gap: 5px;
    margin: 0 0 10px;
    padding: 10px;
    border: 1px solid rgba(176, 155, 128, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px) saturate(170%);
    -webkit-backdrop-filter: blur(14px) saturate(170%);
}
.sf-cc-est-breakdown div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--cc-ink);
    font-size: 0.76rem;
    font-weight: 850;
}
.sf-cc-est-breakdown strong { color: var(--cc-ink); font-weight: 950; }
.sf-cc-est-breakdown .sf-cc-est-save strong { color: #177245; }
.sf-cc-est-intel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 0 0 12px;
}
.sf-cc-est-intel span {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 6px 9px;
    border: 1px solid rgba(74, 222, 128, 0.28);
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.12);
    color: #1f6b3d;
    font-size: 0.7rem;
    font-weight: 950;
    line-height: 1.25;
}
.sf-cc-est-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
.sf-cc-est-book {
    display: block; text-align: center; text-decoration: none;
    padding: 12px; border-radius: 999px; background: linear-gradient(135deg, #2b2420, #15110e); color: #fff;
    font-size: 0.85rem; font-weight: 900; transition: transform 0.15s ease;
}
.sf-cc-est-book:hover { transform: translateY(-2px); }
.sf-cc-est-book:active { transform: scale(0.98); }

/* ---------- Recent-work gallery (Home) ---------- */
.sf-cc-gallery { margin-top: 6px; }
.sf-cc-gallery-label { font-family: Lato, Arial, sans-serif; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cc-grey); margin-bottom: 9px; text-align: left; }
.sf-cc-gallery-strip {
    display: flex; gap: 9px; overflow-x: auto; padding-bottom: 4px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.sf-cc-gallery-strip::-webkit-scrollbar { height: 0; }
.sf-cc-gallery-tile {
    flex: 0 0 auto; width: 120px; height: 86px; border-radius: 12px; overflow: hidden;
    scroll-snap-align: start; box-shadow: 0 4px 12px rgba(20, 16, 13, 0.12); display: block;
}
.sf-cc-gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.sf-cc-gallery-tile:hover img { transform: scale(1.08); }

/* ---------- Launcher peek bubble ---------- */
.sf-cc-peek {
    position: fixed; right: 22px; bottom: 84px; z-index: 9997; max-width: 240px;
    display: flex; align-items: center; gap: 8px; padding: 12px 14px;
    background: #fff; border: 1px solid rgba(176, 155, 128, 0.45); border-radius: 16px 16px 4px 16px;
    box-shadow: 0 16px 36px rgba(20, 16, 13, 0.24);
    font-family: Lato, Arial, sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--cc-ink);
    opacity: 0; transform: translateY(12px) scale(0.95); pointer-events: none; transition: opacity 0.28s ease, transform 0.28s ease;
}
.sf-cc-peek.is-show { opacity: 1; transform: none; pointer-events: auto; }
.sf-cc-peek-msg { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; line-height: 1.35; }
.sf-cc-peek-x { position: absolute; top: -9px; right: -9px; width: 22px; height: 22px; border: 0; border-radius: 50%; background: var(--cc-ink); color: #fff; font-size: 0.9rem; line-height: 1; cursor: pointer; }

/* ---------- MESSAGES view ---------- */
.sf-global-cc-messages {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 18px 16px;
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.12), rgba(243, 237, 228, 0.08));
}
.sf-global-cc-msg {
    max-width: 86%;
    padding: 11px 15px;
    border-radius: 18px;
    font-family: Lato, Arial, sans-serif;
    font-size: 0.92rem;
    line-height: 1.5;
    word-break: break-word;
    animation: sfGlobalCcIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes sfGlobalCcIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.sf-global-cc-msg.is-bot { align-self: flex-start; background: rgba(255, 255, 255, 0.46); backdrop-filter: blur(18px) saturate(175%); -webkit-backdrop-filter: blur(18px) saturate(175%); color: var(--cc-ink); border-bottom-left-radius: 5px; box-shadow: 0 4px 14px rgba(20, 16, 13, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76); }
.sf-global-cc-msg.is-user { align-self: flex-end; background: linear-gradient(135deg, rgba(176, 155, 128, 0.62), rgba(138, 109, 59, 0.56)); backdrop-filter: blur(18px) saturate(175%); -webkit-backdrop-filter: blur(18px) saturate(175%); color: #fff; border-bottom-right-radius: 5px; box-shadow: 0 4px 14px rgba(138, 109, 59, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24); }
.sf-global-cc-msg.is-wide {
    width: 96%;
    max-width: 96%;
    box-sizing: border-box;
}
.sf-global-cc-panel.is-booking-focus .sf-global-cc-msg.is-wide {
    width: min(520px, 56%);
    max-width: min(520px, 56%);
}
.sf-cc-prior-wrap {
    display: flex;
    justify-content: center;
    margin: -2px 0 4px;
}
.sf-cc-prior-btn {
    border: 1px solid rgba(176, 155, 128, 0.24);
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(43, 36, 32, 0.68);
    cursor: pointer;
    font-family: Lato, Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.sf-cc-prior-btn:hover { color: var(--cc-ink); border-color: rgba(176, 155, 128, 0.46); background: rgba(255, 255, 255, 0.4); }
.sf-global-cc-msg.is-typing { display: flex; align-items: center; gap: 4px; }
.sf-global-cc-msg.is-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--cc-gold); animation: sfGlobalTyping 1.2s infinite ease-in-out; }
.sf-global-cc-msg.is-typing span:nth-child(2) { animation-delay: 0.2s; }
.sf-global-cc-msg.is-typing span:nth-child(3) { animation-delay: 0.4s; }
.sf-global-cc-msg.is-live-typing {
    min-width: 58px;
    min-height: 44px;
}
.sf-global-cc-msg.is-live-typing .sf-cc-typing-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 4px;
    border-radius: 50%;
    background: var(--cc-gold);
    animation: sfGlobalTyping 1.2s infinite ease-in-out;
}
.sf-global-cc-msg.is-live-typing .sf-cc-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.sf-global-cc-msg.is-live-typing .sf-cc-typing-dot:nth-child(3) { animation-delay: 0.4s; margin-right: 0; }
.sf-global-cc-msg.is-dani-queued {
    display: none !important;
}
@keyframes sfGlobalTyping { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-5px); opacity: 1; } }

.sf-global-cc-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 14px 10px; background: rgba(243, 237, 228, 0.08); flex: 0 0 auto; }
.sf-global-cc-chip {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 9px 14px; border: 1px solid rgba(176, 155, 128, 0.5); border-radius: 999px;
    background: rgba(255, 255, 255, 0.34); color: var(--cc-ink); cursor: pointer;
    backdrop-filter: blur(16px) saturate(175%);
    -webkit-backdrop-filter: blur(16px) saturate(175%);
    font-family: Lato, Arial, sans-serif; font-size: 0.82rem; font-weight: 800;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}
.sf-global-cc-chip:hover { background: var(--cc-gold); color: #fff; border-color: var(--cc-gold); box-shadow: 0 6px 16px rgba(176, 155, 128, 0.4); }
.sf-global-cc-chip:hover .sf-cc-icon,
.sf-global-cc-action:hover .sf-cc-icon {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.sf-global-cc-chip:active { transform: scale(0.95); }

.sf-global-cc-actions { display: none; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 14px; background: rgba(243, 237, 228, 0.08); border-top: 1px solid rgba(255, 255, 255, 0.18); flex: 0 0 auto; }
.sf-global-cc-actions.is-single {
    grid-template-columns: 1fr;
    justify-items: stretch;
}
.sf-global-cc-action {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 38px;
    padding: 8px 14px; border: 1px solid rgba(176, 155, 128, 0.55); border-radius: 999px;
    background: rgba(255, 255, 255, 0.34); color: var(--cc-ink); cursor: pointer; text-decoration: none;
    backdrop-filter: blur(16px) saturate(175%);
    -webkit-backdrop-filter: blur(16px) saturate(175%);
    font-family: Lato, Arial, sans-serif; font-size: 0.8rem; font-weight: 900;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}
.sf-global-cc-actions.is-single .sf-global-cc-action {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
}
.sf-global-cc-action:hover { background: var(--cc-ink); color: #fff; border-color: var(--cc-ink); }
.sf-global-cc-action:active { transform: scale(0.95); }

.sf-global-cc-form { display: flex; gap: 8px; align-items: flex-end; padding: 12px; background: rgba(255, 255, 255, 0.18); border-top: 1px solid rgba(255, 255, 255, 0.22); backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%); flex: 0 0 auto; }
.sf-global-cc-form textarea {
    flex: 1; min-width: 0; min-height: 46px; max-height: 118px; overflow-y: auto; border: 1px solid rgba(163, 143, 117, 0.42); border-radius: 23px;
    padding: 13px 16px; background: rgba(250, 247, 242, 0.36); color: var(--cc-ink);
    backdrop-filter: blur(16px) saturate(175%);
    -webkit-backdrop-filter: blur(16px) saturate(175%);
    font-family: Lato, Arial, sans-serif; font-size: 0.95rem; line-height: 1.35; outline: none; resize: none;
    scrollbar-width: none;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.sf-global-cc-form textarea::-webkit-scrollbar { width: 0; height: 0; display: none; }
.sf-global-cc-form textarea:focus { border-color: var(--cc-gold); background: rgba(255, 255, 255, 0.78); box-shadow: 0 0 0 3px rgba(176, 155, 128, 0.16); }
.sf-global-cc-send {
    width: 46px; height: 46px; flex: 0 0 46px; border: 0; border-radius: 50%;
    background: linear-gradient(135deg, #b09b80, #8a6d3b); color: #fff; cursor: pointer; font-size: 1.15rem;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s ease, box-shadow 0.18s ease;
}
.sf-global-cc-send:hover { box-shadow: 0 8px 18px rgba(138, 109, 59, 0.4); transform: scale(1.05); }
.sf-global-cc-send:active { transform: scale(0.92); }
.sf-global-cc-send:disabled, .sf-global-cc-form.is-busy textarea { opacity: 0.6; cursor: progress; }

/* ---------- HELP view ---------- */
.sf-cc-help-body { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; background: linear-gradient(180deg, rgba(243, 237, 228, 0.12), rgba(250, 247, 242, 0.08)); padding: 16px; }
.sf-cc-help-search {
    width: 100%; border: 1px solid rgba(163, 143, 117, 0.42); border-radius: 12px;
    padding: 13px 15px; margin-bottom: 14px; background: rgba(255, 255, 255, 0.36); color: var(--cc-ink);
    backdrop-filter: blur(16px) saturate(175%);
    -webkit-backdrop-filter: blur(16px) saturate(175%);
    font-family: Lato, Arial, sans-serif; font-size: 16px; outline: none;
}
.sf-cc-help-search:focus { border-color: var(--cc-gold); box-shadow: 0 0 0 3px rgba(176, 155, 128, 0.16); }
.sf-cc-help-list { display: flex; flex-direction: column; gap: 9px; }
.sf-cc-help-item {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    width: 100%; padding: 14px 15px; border: 1px solid rgba(176, 155, 128, 0.26); border-radius: 14px;
    background: rgba(255, 255, 255, 0.34); color: var(--cc-ink); cursor: pointer; text-align: left;
    backdrop-filter: blur(16px) saturate(175%);
    -webkit-backdrop-filter: blur(16px) saturate(175%);
    font-family: Lato, Arial, sans-serif; font-size: 0.9rem; font-weight: 700;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.sf-cc-help-item:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20, 16, 13, 0.1); border-color: var(--cc-gold); }
.sf-cc-help-item:active { transform: scale(0.99); }
.sf-cc-help-arrow { color: var(--cc-gold-deep); font-size: 1.3rem; font-weight: 700; }

/* ---------- Bottom tab bar ---------- */
.sf-cc-nav {
    display: flex;
    flex: 0 0 auto;
    min-height: 64px;
    position: relative;
    z-index: 8;
    background: rgba(21, 17, 14, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
}
.sf-cc-nav-btn {
    flex: 1 1 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    padding: 10px 4px;
    border: 0; background: transparent; cursor: pointer;
    color: rgba(255, 255, 255, 0.82);
    font-family: Lato, Arial, sans-serif; font-size: 0.74rem; font-weight: 950; letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    -webkit-tap-highlight-color: transparent;
    transition: color 0.18s ease, background 0.18s ease, text-shadow 0.18s ease;
}
.sf-cc-nav-ic {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(176, 155, 128, 0.42);
    background: rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.34));
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.sf-cc-nav-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.sf-cc-nav-btn:hover .sf-cc-nav-ic {
    background: rgba(176, 155, 128, 0.24);
    border-color: rgba(176, 155, 128, 0.72);
    color: #fff;
}
.sf-cc-nav-btn.is-active {
    color: #fff;
    background: linear-gradient(180deg, rgba(176, 155, 128, 0.34), rgba(176, 155, 128, 0.16));
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55), 0 0 14px rgba(176, 155, 128, 0.5);
}
.sf-cc-nav-btn.is-active .sf-cc-nav-ic {
    transform: translateY(-1px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
    background: linear-gradient(135deg, rgba(176, 155, 128, 0.92), rgba(138, 109, 59, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 8px 16px rgba(20, 16, 13, 0.22);
}

/* ---------- In-chat lead / quote forms ---------- */
.sf-global-cc-lead {
    display: grid;
    gap: 9px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
.sf-global-cc-lead strong { font-family: Lato, Arial, sans-serif; font-size: 0.95rem; color: var(--cc-ink); }
.sf-global-cc-lead input,
.sf-global-cc-lead textarea,
.sf-global-cc-lead select {
    width: 100%; border: 1px solid rgba(163, 143, 117, 0.42); border-radius: 12px; padding: 12px 13px;
    background: rgba(250, 247, 242, 0.36); color: var(--cc-ink); font-family: Lato, Arial, sans-serif; font-size: 16px; outline: none;
    backdrop-filter: blur(16px) saturate(175%);
    -webkit-backdrop-filter: blur(16px) saturate(175%);
    box-sizing: border-box;
}
.sf-global-cc-lead input:focus, .sf-global-cc-lead textarea:focus, .sf-global-cc-lead select:focus { border-color: var(--cc-gold); background: rgba(255, 255, 255, 0.78); }
.sf-global-cc-lead textarea { min-height: 74px; resize: vertical; }
.sf-cc-lead-hint { font-family: Lato, Arial, sans-serif; font-size: 0.72rem; color: var(--cc-ink-soft, #8a8276); margin: -3px 0 1px; }
.sf-global-cc-lead button {
    border: 0; border-radius: 999px; padding: 13px 14px;
    background: linear-gradient(135deg, #b09b80, #8a6d3b); color: #fff; cursor: pointer;
    font-family: Lato, Arial, sans-serif; font-size: 0.86rem; font-weight: 900; transition: transform 0.15s ease;
}
.sf-global-cc-lead button:active { transform: scale(0.97); }
.sf-global-cc-lead button:disabled { opacity: 0.62; cursor: progress; }
.sf-global-cc-mini { display: grid; gap: 8px; }
.sf-global-cc-mini strong { font-family: Lato, Arial, sans-serif; font-size: 0.95rem; color: var(--cc-ink); }
.sf-global-cc-mini ul { margin: 0; padding-left: 18px; font-family: Lato, Arial, sans-serif; font-size: 0.88rem; color: var(--cc-ink); }
.sf-global-cc-mini li { margin: 0 0 6px; line-height: 1.45; }
.sf-global-cc-mini p { margin: 2px 0 0; font-family: Lato, Arial, sans-serif; font-size: 0.84rem; line-height: 1.45; color: var(--cc-grey); }
/* ---------- Mobile: full-screen sheet with safe areas ---------- */
@media (max-width: 900px) {
    .sf-global-cc-launch { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
    .sf-global-cc-panel {
        right: 0; bottom: 0; left: 0; top: 0;
        width: 100%; max-width: 100%;
        height: 100vh; height: 100dvh;
        max-height: 100vh; max-height: 100dvh;
        border: 0; border-radius: 0;
        transform: translateY(100%);
    }
    .sf-global-cc-panel.is-open { transform: translateY(0); }
    .sf-global-cc-panel.is-open.is-booking-focus {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
        max-width: none;
        height: auto;
        max-height: none;
        border: 1px solid rgba(255, 255, 255, 0.56);
        border-radius: 24px;
        transform: translateY(0) scale(1);
        transform-origin: center;
        animation: sfCcMobileBookingExpand 0.46s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    body.sf-cc-booking-focus::before {
        background: rgba(21, 17, 14, 0.54);
        backdrop-filter: blur(10px) saturate(140%);
        -webkit-backdrop-filter: blur(10px) saturate(140%);
    }
    .sf-cc-views {
        position: absolute;
        top: 0;
        right: 0;
        bottom: calc(68px + env(safe-area-inset-bottom));
        left: 0;
        flex: none;
    }
    .sf-global-cc-head { padding-top: calc(15px + env(safe-area-inset-top)); }
    .sf-cc-hero { padding-top: calc(14px + env(safe-area-inset-top)); padding-bottom: 18px; padding-right: 48px; }
    .sf-cc-nav {
        position: fixed !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: calc(68px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
        background: rgba(21, 17, 14, 0.86);
        box-shadow: 0 -18px 34px rgba(20, 16, 13, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        z-index: 2147483000 !important;
    }
    .sf-cc-nav-btn { min-height: 68px; padding-top: 8px; padding-bottom: 8px; }
    .sf-global-cc-msg { font-size: 0.98rem; max-width: 88%; }
    .sf-global-cc-msg.is-wide,
    .sf-global-cc-panel.is-booking-focus .sf-global-cc-msg.is-wide {
        width: 96%;
        max-width: 96%;
    }
    .sf-cc-bk-addon-cats {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    .sf-cc-bk-addon-cats .sf-global-cc-action {
        min-height: 78px;
        padding: 10px;
    }
    .sf-cc-bk-addon-cats .sf-cc-bk-choice-t {
        font-size: 0.82rem;
    }
    .sf-cc-bk-addon-cats .sf-cc-bk-choice-s {
        font-size: 0.68rem;
        line-height: 1.25;
    }
    .sf-global-cc-chip, .sf-global-cc-action { min-height: 42px; font-size: 0.86rem; }
    .sf-global-cc-form textarea { font-size: 16px; }
    .sf-global-cc-send { width: 48px; height: 48px; flex: 0 0 48px; }
    .sf-cc-peek { right: 16px; bottom: calc(78px + env(safe-area-inset-bottom)); }
    /* Hide the site's floating menu while the full-screen chat is open so its
       top-right "Menu" pill can't overlap the chat's close (X) button. */
    body.sf-cc-open .premium-mobile-nav,
    body.sf-cc-open .nav-trigger-pill,
    body.sf-cc-open .mobile-top-bar,
    body.sf-cc-open .liquid-dock-container,
    body.sf-cc-open .sf-mobile-hud { display: none !important; }
}

@keyframes sfCcMobileBookingExpand {
    from { opacity: 0.76; transform: translateY(18px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .sf-global-cc-launch { animation: none; }
    .sf-global-cc-panel, .sf-cc-view, .sf-global-cc-msg, .sf-global-cc-launch,
    .sf-global-cc-send, .sf-global-cc-chip, .sf-global-cc-action,
    .sf-cc-home-card, .sf-cc-help-item, .sf-cc-home-msg { transition: none; animation: none; }
}

/* =====================================================================
   LEAD CAPTURE — lean email-first form + exit-intent price-guide modal
   ===================================================================== */
.sf-cc-emailcap input[name="name"] { opacity: 0.92; }
.sf-cc-emailcap strong { margin-bottom: 2px; }

.sf-cc-exit-overlay {
    position: fixed; inset: 0; z-index: 2147483001;
    display: flex; align-items: center; justify-content: center;
    background: rgba(20, 16, 13, 0.55); backdrop-filter: blur(3px);
    padding: 20px; opacity: 0; transition: opacity 0.25s ease;
}
.sf-cc-exit-overlay.is-show { opacity: 1; }
.sf-cc-exit-card {
    position: relative; width: 100%; max-width: 390px;
    background: #FFFCF7; border-radius: 18px; padding: 30px 26px 24px;
    box-shadow: 0 24px 70px rgba(20, 16, 13, 0.35);
    border: 1px solid rgba(176, 155, 128, 0.35);
    font-family: Lato, Arial, sans-serif; text-align: center;
    transform: translateY(14px) scale(0.98); transition: transform 0.25s ease;
}
.sf-cc-exit-overlay.is-show .sf-cc-exit-card { transform: translateY(0) scale(1); }
.sf-cc-exit-x {
    position: absolute; top: 10px; right: 12px; width: 32px; height: 32px;
    border: 0; background: transparent; color: #8a8276; font-size: 1.5rem;
    cursor: pointer; line-height: 1; border-radius: 50%;
}
.sf-cc-exit-x:hover { background: rgba(0,0,0,0.05); color: #2B2420; }
.sf-cc-exit-kicker {
    font-size: 0.7rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
    color: #B09B80; margin-bottom: 8px;
}
.sf-cc-exit-title {
    font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.7rem; line-height: 1.12;
    font-weight: 700; color: #2B2420; margin: 0 0 10px;
}
.sf-cc-exit-sub { font-size: 0.92rem; line-height: 1.55; color: #5E544F; margin: 0 0 18px; }
.sf-cc-exit-form { display: flex; flex-direction: column; gap: 9px; }
.sf-cc-exit-form input {
    width: 100%; box-sizing: border-box; padding: 13px 14px; font-size: 16px;
    border: 1px solid rgba(94, 84, 79, 0.28); border-radius: 12px;
    background: #fff; color: #2B2420; font-family: Lato, Arial, sans-serif; outline: none;
}
.sf-cc-exit-form input:focus { border-color: #B09B80; }
.sf-cc-exit-form button, .sf-cc-exit-dl {
    border: 0; border-radius: 999px; padding: 14px 18px; cursor: pointer;
    background: #2B2420; color: #fff; font-family: Lato, Arial, sans-serif;
    font-size: 0.82rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; display: inline-block; transition: transform 0.15s ease;
}
.sf-cc-exit-form button:active, .sf-cc-exit-dl:active { transform: scale(0.97); }
.sf-cc-exit-form button:disabled { opacity: 0.6; cursor: progress; }
.sf-cc-exit-dl { margin-top: 6px; }
.sf-cc-exit-fine { font-size: 0.7rem; color: #8a8276; margin-top: 12px; }

@media (prefers-reduced-motion: reduce) {
    .sf-cc-exit-overlay, .sf-cc-exit-card { transition: none; }
}

/* =====================================================================
   INLINE LEAD CAPTURE — magnet block, referral block, footer join
   (drop a <div class="sf-lead-magnet"> / "sf-lead-referral"> on a page;
   footer join auto-injects into footer.mobile-footer-dashboard)
   ===================================================================== */
.sf-lead-magnet, .sf-lead-referral {
    max-width: 720px; margin: 46px auto; padding: 0 18px;
    font-family: Lato, Arial, sans-serif;
}
.sf-magnet-inner {
    background: linear-gradient(150deg, #FFFCF7, #F3EDE4);
    border: 1px solid rgba(176, 155, 128, 0.45); border-radius: 20px;
    padding: 34px 30px; text-align: center;
    box-shadow: 0 16px 44px rgba(43, 36, 32, 0.10);
}
.sf-magnet-kicker { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: #B09B80; font-weight: 800; margin-bottom: 8px; }
.sf-magnet-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.85rem; line-height: 1.12; font-weight: 700; color: #2B2420; margin: 0 0 10px; }
.sf-magnet-sub { font-size: 0.98rem; color: #5E544F; line-height: 1.55; margin: 0 auto 20px; max-width: 480px; }
.sf-magnet-form { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; }
.sf-magnet-form input {
    flex: 1 1 240px; max-width: 320px; min-width: 0; box-sizing: border-box;
    padding: 14px 16px; font-size: 16px; border: 1px solid rgba(94, 84, 79, 0.28);
    border-radius: 12px; background: #fff; color: #2B2420; outline: none;
}
.sf-magnet-form input:focus { border-color: #B09B80; }
.sf-magnet-form button {
    border: 0; border-radius: 999px; padding: 14px 28px; cursor: pointer;
    background: #2B2420; color: #fff; font-family: Lato, Arial, sans-serif;
    font-size: 0.82rem; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
    white-space: nowrap; transition: transform 0.15s ease;
}
.sf-magnet-form button:active { transform: scale(0.97); }
.sf-magnet-form button:disabled { opacity: 0.6; cursor: progress; }
.sf-magnet-form-2 { flex-direction: column; align-items: center; max-width: 360px; margin: 0 auto; }
.sf-magnet-form-2 input { flex: none; width: 100%; max-width: none; }
.sf-magnet-form-2 button { width: 100%; }
.sf-magnet-fine { font-size: 0.72rem; color: #8a8276; margin-top: 13px; }
.sf-magnet-dl {
    display: inline-block; margin-top: 6px; background: #2B2420; color: #fff;
    text-decoration: none; padding: 14px 30px; border-radius: 999px;
    font-size: 0.82rem; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
}

/* ---- Footer join (slim) ---- */
.sf-lead-join { width: 100%; padding: 22px 16px; box-sizing: border-box; }
.sf-join-inner {
    max-width: 560px; margin: 0 auto; display: flex; flex-direction: column;
    align-items: center; gap: 12px; text-align: center;
}
.sf-join-label { font-family: Lato, Arial, sans-serif; font-size: 0.9rem; font-weight: 700; color: inherit; opacity: 0.92; letter-spacing: 0.3px; }
.sf-join-done { color: #B09B80; font-weight: 800; }
.sf-join-form { display: flex; gap: 8px; width: 100%; max-width: 420px; justify-content: center; }
.sf-join-form input {
    flex: 1 1 auto; min-width: 0; box-sizing: border-box; padding: 12px 14px; font-size: 16px;
    border: 1px solid rgba(176, 155, 128, 0.5); border-radius: 10px;
    background: rgba(255,255,255,0.94); color: #2B2420; outline: none;
}
.sf-join-form input:focus { border-color: #B09B80; }
.sf-join-form button {
    border: 0; border-radius: 999px; padding: 12px 22px; cursor: pointer;
    background: #B09B80; color: #2B2420; font-family: Lato, Arial, sans-serif;
    font-size: 0.78rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
    white-space: nowrap;
}
.sf-join-form button:disabled { opacity: 0.6; cursor: progress; }
@media (max-width: 520px) { .sf-magnet-form, .sf-join-form { flex-direction: column; } .sf-magnet-form input, .sf-magnet-form button, .sf-join-form input, .sf-join-form button { width: 100%; max-width: none; } }

/* ---- Trust strip (social proof at capture points) ---- */
.sf-trust { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; margin: 4px 0 14px; }
.sf-trust-top { display: inline-flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: center; }
.sf-trust-stars { color: #E0B652; letter-spacing: 1px; font-size: 0.82rem; }
.sf-trust-rate { font-weight: 900; color: #2B2420; font-size: 0.82rem; }
.sf-trust-count { font-size: 0.72rem; color: #8a8276; font-weight: 700; }
.sf-trust-quote { font-size: 0.78rem; color: #5E544F; font-style: italic; line-height: 1.4; }
.sf-global-cc-lead .sf-trust { margin: 2px 0 8px; }
.sf-global-cc-lead .sf-trust-quote { display: none; }

/* =====================================================================
   QUOTE BUILDER — homepage "Send me a quote" → animated slider → email
   ===================================================================== */
.sf-quote-builder { max-width: 720px; margin: 50px auto; padding: 0 18px; font-family: Lato, Arial, sans-serif; }
.sf-qb {
    background: radial-gradient(120% 140% at 0% 0%, #FFFCF7 0%, #F3EDE4 70%);
    border: 1px solid rgba(176, 155, 128, 0.45); border-radius: 22px;
    padding: 36px 30px; text-align: center; box-shadow: 0 20px 54px rgba(43, 36, 32, 0.12);
}
.sf-qb-kicker { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: #B09B80; font-weight: 800; margin-bottom: 8px; }
.sf-qb-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1.12; font-weight: 700; color: #2B2420; margin: 0 0 10px; }
.sf-qb-sub { font-size: 0.98rem; color: #5E544F; line-height: 1.55; margin: 0 auto 22px; max-width: 480px; }
.sf-qb-launch {
    border: 0; border-radius: 999px; padding: 16px 38px; cursor: pointer;
    background: #2B2420; color: #fff; font-family: Lato, Arial, sans-serif;
    font-size: 0.9rem; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease; box-shadow: 0 10px 26px rgba(43, 36, 32, 0.22);
}
.sf-qb-launch:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(43, 36, 32, 0.28); }
.sf-qb-launch:active { transform: scale(0.97); }

.sf-qb-panel { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease; }
.sf-qb-panel.is-open { max-height: 640px; opacity: 1; }

.sf-qb-addr { display: flex; gap: 8px; margin: 6px auto 20px; max-width: 440px; }
.sf-qb-addr-input { flex: 1 1 auto; min-width: 0; padding: 12px 14px; font-size: 16px; border: 1px solid rgba(94,84,79,0.25); border-radius: 11px; background: #fff; color: #2B2420; outline: none; }
.sf-qb-addr-input:focus { border-color: #B09B80; }
.sf-qb-addr-input.is-found { border-color: #4A8B5E; }
.sf-qb-addr-input.is-miss { border-color: #B85C5C; animation: sfQbShake 0.4s; }
@keyframes sfQbShake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-5px);} 75%{transform:translateX(5px);} }
.sf-qb-addr-btn { border: 0; border-radius: 11px; padding: 0 18px; background: #B09B80; color: #2B2420; font-weight: 900; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; white-space: nowrap; }

.sf-qb-readout { transition: transform 0.2s ease; }
.sf-qb-readout.is-pulse { transform: scale(1.015); }
.sf-qb-pkg { font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: #8C6A36; }
.sf-qb-price { font-family: "Cormorant Garamond", Georgia, serif; font-size: 3.6rem; font-weight: 700; line-height: 1; color: #2B2420; margin: 2px 0 4px; }
.sf-qb-price small { font-size: 0.9rem; font-family: Lato, Arial, sans-serif; font-weight: 700; color: #8a8276; vertical-align: middle; letter-spacing: 0; }
.sf-qb-meta { font-size: 0.86rem; color: #5E544F; }
.sf-qb-slider { -webkit-appearance: none; appearance: none; width: 100%; max-width: 460px; height: 8px; border-radius: 999px; background: #E6E1DC; outline: none; margin: 20px auto 6px; display: block; }
.sf-qb-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #2B2420; border: 3px solid #fff; box-shadow: 0 3px 10px rgba(43,36,32,0.35); cursor: pointer; }
.sf-qb-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #2B2420; border: 3px solid #fff; cursor: pointer; }
.sf-qb-scale { display: flex; justify-content: space-between; max-width: 460px; margin: 0 auto 20px; font-size: 0.66rem; color: #8a8276; font-weight: 700; }
.sf-qb-scale span:nth-child(2) { color: #B09B80; text-transform: uppercase; letter-spacing: 1px; }
.sf-qb-form { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; max-width: 460px; margin: 0 auto; }
.sf-qb-form input { flex: 1 1 220px; max-width: 300px; min-width: 0; padding: 14px 16px; font-size: 16px; border: 1px solid rgba(94,84,79,0.25); border-radius: 12px; background: #fff; color: #2B2420; outline: none; }
.sf-qb-form input:focus { border-color: #B09B80; }
.sf-qb-form button { border: 0; border-radius: 999px; padding: 14px 26px; cursor: pointer; background: #2B2420; color: #fff; font-weight: 900; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.sf-qb-form button:disabled { opacity: 0.6; cursor: progress; }
.sf-qb-fine { font-size: 0.72rem; color: #8a8276; margin-top: 14px; }
.sf-qb-done { padding: 8px 0; }
.sf-qb-book { display: inline-block; margin-top: 8px; background: #2B2420; color: #fff; text-decoration: none; padding: 14px 30px; border-radius: 999px; font-size: 0.82rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
@media (max-width: 520px) { .sf-qb-title { font-size: 1.65rem; } .sf-qb-form, .sf-qb-addr { flex-direction: column; } .sf-qb-form input, .sf-qb-form button, .sf-qb-addr-input, .sf-qb-addr-btn { width: 100%; max-width: none; } .sf-qb-addr-btn { padding: 12px; } }
@media (prefers-reduced-motion: reduce) { .sf-qb-panel { transition: none; } .sf-qb-readout.is-pulse { transform: none; } }

/* =====================================================================
   QUOTE POPUP — glassmorphism modal holding the animated slider
   ===================================================================== */
.sf-qm-overlay {
    position: fixed; inset: 0; z-index: 2147483002;
    display: flex; align-items: center; justify-content: center; padding: 20px;
    background: rgba(20, 16, 13, 0.45);
    backdrop-filter: blur(9px) saturate(140%); -webkit-backdrop-filter: blur(9px) saturate(140%);
    opacity: 0; transition: opacity 0.3s ease;
}
.sf-qm-overlay.is-show { opacity: 1; }
.sf-qm-card {
    position: relative; width: 100%; max-width: 600px;
    background: linear-gradient(155deg, rgba(255, 252, 247, 0.82), rgba(243, 237, 228, 0.62));
    backdrop-filter: blur(42px) saturate(200%); -webkit-backdrop-filter: blur(42px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 28px;
    box-shadow: 0 44px 120px rgba(20, 16, 13, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 0 60px rgba(255, 255, 255, 0.15);
    padding: 46px 52px 38px; text-align: center; font-family: Lato, Arial, sans-serif;
    transform: translateY(22px) scale(0.95); opacity: 0;
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.sf-qm-overlay.is-show .sf-qm-card { transform: none; opacity: 1; }
.sf-qm-x {
    position: absolute; top: 15px; right: 17px; width: 36px; height: 36px; border: 0;
    background: rgba(43, 36, 32, 0.06); color: #5E544F; font-size: 1.6rem; line-height: 1;
    border-radius: 50%; cursor: pointer; transition: background 0.2s ease;
}
.sf-qm-x:hover { background: rgba(43, 36, 32, 0.13); color: #2B2420; }
.sf-qm-head { margin-bottom: 10px; }
/* Wider popup → more generous, premium proportions */
.sf-qm-card .sf-qb-title { font-size: 2.2rem; }
.sf-qm-card .sf-qb-sub { font-size: 1rem; max-width: 440px; margin-left: auto; margin-right: auto; }
.sf-qm-panel { margin-top: 16px; }
.sf-qm-panel .sf-qb-readout { margin: 24px 0 8px; }
.sf-qm-panel .sf-qb-price { font-size: 4.6rem; }
.sf-qm-panel .sf-qb-slider { max-width: 100%; margin-top: 26px; }
.sf-qm-panel .sf-qb-scale, .sf-qm-panel .sf-qb-form, .sf-qm-panel .sf-qb-addr { max-width: 100%; }
@media (max-width: 900px) {
    .sf-qm-overlay {
        align-items: center;
        justify-content: center;
        padding: calc(14px + env(safe-area-inset-top)) 14px calc(14px + env(safe-area-inset-bottom));
        background: rgba(20, 16, 13, 0.34);
    }
    .sf-qm-card {
        width: 100%;
        max-width: 355px;
        max-height: min(82vh, 560px);
        max-height: min(82dvh, 560px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 24px;
        padding: 16px;
        background: linear-gradient(160deg, rgba(255, 252, 247, 0.92), rgba(246, 240, 232, 0.78));
        box-shadow: 0 28px 80px rgba(20, 16, 13, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    .sf-qm-x {
        top: 10px; right: 10px; width: 30px; height: 30px;
        background: rgba(43, 36, 32, 0.08);
        font-size: 1.2rem;
    }
    .sf-qm-head {
        margin-bottom: 12px;
        padding: 0 34px;
        text-align: center;
    }
    .sf-qm-card .sf-qb-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        padding: 5px 8px;
        border-radius: 999px;
        background: rgba(176, 155, 128, 0.16);
        color: #7a6042;
        font-family: Lato, Arial, sans-serif;
        font-size: 0.55rem;
        letter-spacing: 1.1px;
        margin: 0 0 8px;
    }
    .sf-qm-card .sf-qb-title {
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 1.48rem;
        line-height: 1.04;
        font-weight: 700;
        margin-bottom: 5px;
    }
    .sf-qm-card .sf-qb-sub {
        font-size: 0.78rem;
        line-height: 1.35;
        margin: 0;
        max-width: none;
    }
    .sf-qm-panel { margin-top: 0; }
    .sf-qm-panel .sf-qb-addr {
        flex-direction: row;
        gap: 7px;
        margin: 0 0 12px;
        padding: 7px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.42);
        border: 1px solid rgba(176, 155, 128, 0.2);
    }
    .sf-qm-panel .sf-qb-addr-input,
    .sf-qm-panel .sf-qb-form input {
        width: auto;
        min-height: 40px;
        height: 40px;
        padding: 9px 11px;
        border-radius: 11px;
        border-color: rgba(94, 84, 79, 0.16);
        font-size: 16px;
        line-height: 1;
    }
    .sf-qm-panel .sf-qb-addr-btn,
    .sf-qm-panel .sf-qb-form button {
        width: auto;
        flex: 0 0 auto;
        min-height: 40px;
        height: 40px;
        padding: 0 13px;
        border-radius: 11px;
        font-size: 0.66rem;
        line-height: 1;
        letter-spacing: 0.7px;
    }
    .sf-qm-panel .sf-qb-readout {
        margin: 0 0 12px;
        padding: 14px;
        text-align: center;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.48);
        border: 1px solid rgba(176, 155, 128, 0.22);
    }
    .sf-qm-panel .sf-qb-pkg { font-size: 0.62rem; letter-spacing: 1.1px; color: #8a6d3b; }
    .sf-qm-panel .sf-qb-price {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 6px;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 2.55rem;
        font-weight: 700;
        margin: 2px 0;
    }
    .sf-qm-panel .sf-qb-price small { display: inline; font-size: 0.66rem; margin: 0; }
    .sf-qm-panel .sf-qb-disc { font-size: 0.72rem; margin-top: 2px; color: #287548; }
    .sf-qm-panel .sf-qb-meta { font-size: 0.7rem; line-height: 1.3; }
    .sf-qm-panel .sf-qb-slider { margin: 12px auto 4px; height: 5px; }
    .sf-qm-panel .sf-qb-slider::-webkit-slider-thumb { width: 20px; height: 20px; }
    .sf-qm-panel .sf-qb-slider::-moz-range-thumb { width: 20px; height: 20px; }
    .sf-qm-panel .sf-qb-scale { margin-bottom: 8px; font-size: 0.54rem; }
    .sf-qm-panel .sf-qb-form {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        align-items: center;
        padding: 7px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.42);
        border: 1px solid rgba(176, 155, 128, 0.2);
    }
    .sf-qm-panel .sf-qb-form input { flex: 1 1 auto; max-width: none; min-width: 0; }
    .sf-qm-panel .sf-qb-form button {
        max-width: 96px;
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: center;
        letter-spacing: 0.2px;
        background: #2b2420;
    }
    .sf-qm-panel .sf-qb-fine { margin-top: 8px; font-size: 0.62rem; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { .sf-qm-overlay, .sf-qm-card { transition: none; } }

/* First-time discount line under the quote price */
.sf-qb-disc { font-size: 0.72rem; color: var(--cc-gold-deep); font-weight: 700; }

/* ===== In-chat guided booking ("Book with Dani") ===== */
.sf-cc-bk-card { display: grid; gap: 9px; }
.sf-cc-bk-card strong { font-family: Lato, Arial, sans-serif; font-size: 0.95rem; color: var(--cc-ink); }
.sf-cc-bk-card p { margin: 0; font-size: 0.85rem; line-height: 1.4; color: var(--cc-ink); }
.sf-cc-bk-addr { font-weight: 700; }
.sf-cc-bk-when { color: var(--cc-gold-deep); font-weight: 700; }
.sf-cc-bk-items { margin: 2px 0 0; padding-left: 16px; font-size: 0.82rem; color: var(--cc-ink); }
.sf-cc-bk-items li { margin: 2px 0; }
.sf-cc-bk-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.sf-cc-bk-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.sf-cc-bk-grid .sf-global-cc-action { width: auto; flex: 0 1 auto; }
.sf-cc-bk-addon { display: inline-flex; align-items: center; gap: 7px; }
.sf-cc-bk-price { color: var(--cc-gold-deep); font-weight: 800; }
.sf-cc-bk-total { font-size: 0.9rem; font-weight: 800; color: var(--cc-ink); }
.sf-global-cc-action.is-sel { background: var(--cc-ink); color: #fff; border-color: var(--cc-ink); }
.sf-global-cc-action.is-sel .sf-cc-bk-price { color: var(--cc-gold); }
.sf-cc-bk-go { background: var(--cc-gold-deep); color: #fff; border-color: var(--cc-gold-deep); font-weight: 800; }
.sf-cc-bk-go:hover { background: var(--cc-ink); border-color: var(--cc-ink); }
.sf-cc-bk-done strong { font-size: 1.05rem; }
.sf-cc-bk-done em { color: var(--cc-gold-deep); font-style: italic; }
.sf-cc-bk-acwrap { position: relative; width: 100%; min-width: 0; }
.sf-cc-bk-ac { width: 100%; box-sizing: border-box; list-style: none; margin: 6px 0 0; padding: 4px; border: 1px solid #e7ded2; border-radius: 10px; background: #fff; display: none; max-height: 230px; overflow-y: auto; }
.sf-cc-bk-ac.is-open { display: block; }
.sf-cc-bk-ac-item { display: flex; align-items: flex-start; gap: 9px; min-width: 0; padding: 9px 10px; border-radius: 7px; cursor: pointer; font-size: 0.85rem; color: var(--cc-ink); }
.sf-cc-bk-ac-item:hover { background: rgba(176, 155, 128, 0.15); }
.sf-cc-bk-ac-item i { color: var(--cc-gold-deep); margin-top: 2px; flex: 0 0 auto; }
.sf-cc-bk-ac-txt { display: flex; flex-direction: column; min-width: 0; overflow: hidden; }
.sf-cc-bk-ac-main { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sf-cc-bk-ac-sub { font-size: 0.74rem; color: #8a7f72; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sf-cc-bk-address-preview { margin-top: 9px; }
.sf-cc-bk-property {
    overflow: hidden;
    border: 1px solid rgba(176, 155, 128, 0.28);
    border-radius: 14px;
    background: rgba(255, 252, 247, 0.58);
    box-shadow: 0 10px 28px rgba(43, 36, 32, 0.08);
}
.sf-cc-bk-sv {
    position: relative;
    aspect-ratio: 16 / 9;
    background: rgba(43, 36, 32, 0.12);
}
.sf-cc-bk-sv img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sf-cc-bk-sv span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(21, 17, 14, 0.74);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.sf-cc-bk-address-lines {
    display: grid;
    gap: 4px;
    padding: 12px 13px;
}
.sf-cc-bk-address-lines strong {
    color: var(--cc-ink);
    font-size: 0.95rem;
    line-height: 1.25;
}
.sf-cc-bk-address-lines span,
.sf-cc-bk-address-lines em {
    color: var(--cc-grey);
    font-size: 0.8rem;
    line-height: 1.35;
}
.sf-cc-bk-address-lines em {
    color: var(--cc-gold-deep);
    font-style: normal;
    font-weight: 900;
}
.sf-cc-bk-choice { display: grid; gap: 9px; margin-top: 2px; }
.sf-cc-bk-addon-cats {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    justify-items: stretch;
}
.sf-cc-bk-choice .sf-global-cc-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    width: 100%;
    min-height: 58px;
    height: auto;
    padding: 12px 14px;
    border-radius: 14px;
    line-height: 1.28;
    text-align: left;
    justify-content: center;
}
.sf-cc-bk-addon-cats .sf-global-cc-action {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-self: stretch;
    align-self: stretch;
    min-height: 86px;
    padding: 12px;
}
.sf-cc-bk-addon-cats .sf-cc-bk-choice-t,
.sf-cc-bk-addon-cats .sf-cc-bk-choice-s,
.sf-cc-bk-addon-cats .sf-cc-bk-price {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}
.sf-cc-bk-choice-t { display: block; font-weight: 900; font-size: 0.9rem; }
.sf-cc-bk-choice-s { display: block; font-size: 0.74rem; opacity: 0.8; font-weight: 700; }
.sf-cc-bk-cal-card { gap: 10px; }
.sf-cc-bk-cal-head {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 8px;
}
.sf-cc-bk-cal-head strong { text-align: center; font-size: 0.98rem; }
.sf-cc-bk-cal-nav {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(176, 155, 128, 0.34);
    border-radius: 50%;
    background: rgba(255, 252, 247, 0.58);
    color: var(--cc-ink);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(14px) saturate(170%);
    -webkit-backdrop-filter: blur(14px) saturate(170%);
}
.sf-cc-bk-cal-note {
    margin-top: -3px;
    text-align: center;
    color: var(--cc-grey);
    font-size: 0.72rem;
    font-weight: 800;
}
.sf-cc-bk-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
    padding: 9px;
    border: 1px solid rgba(176, 155, 128, 0.24);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.34);
}
.sf-cc-bk-cal-loading {
    grid-column: 1 / -1;
    padding: 18px 8px;
    text-align: center;
    color: var(--cc-grey);
    font-size: 0.82rem;
    font-weight: 800;
}
.sf-cc-bk-cal-dayname {
    text-align: center;
    color: var(--cc-gold-deep);
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
}
.sf-cc-bk-cal-date {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    min-width: 0;
    border: 1px solid rgba(176, 155, 128, 0.28);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.48);
    color: var(--cc-ink);
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
}
.sf-cc-bk-cal-date i {
    position: absolute;
    bottom: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cc-gold-deep);
    box-shadow: 0 0 0 3px rgba(176, 155, 128, 0.16);
}
.sf-cc-bk-cal-date:disabled {
    cursor: not-allowed;
    color: rgba(94, 84, 79, 0.34);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(176, 155, 128, 0.14);
}
.sf-cc-bk-cal-date.has-openings:hover,
.sf-cc-bk-cal-date.is-sel {
    background: var(--cc-ink);
    color: #fff;
    border-color: var(--cc-ink);
}
.sf-cc-bk-flex-learn {
    display: grid;
    gap: 7px;
}
.sf-cc-bk-flex-window {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
}
.sf-cc-bk-flex-node {
    display: grid;
    gap: 3px;
    padding: 10px;
    border: 1px solid rgba(176, 155, 128, 0.28);
    border-radius: 13px;
    background: rgba(255, 252, 247, 0.34);
    color: var(--cc-ink);
    text-align: left;
    cursor: pointer;
}
.sf-cc-bk-flex-node span {
    color: var(--cc-grey);
    font-size: 0.64rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.sf-cc-bk-flex-node strong {
    color: var(--cc-ink);
    font-size: 0.8rem;
    line-height: 1.2;
}
.sf-cc-bk-flex-node.is-active {
    border-color: rgba(176, 155, 128, 0.8);
    box-shadow: inset 0 0 0 1px rgba(176, 155, 128, 0.22), 0 8px 18px rgba(43, 36, 32, 0.08);
}
.sf-cc-bk-flex-copy {
    padding: 10px 11px;
    border: 1px solid rgba(176, 155, 128, 0.24);
    border-radius: 13px;
    background: rgba(255, 252, 247, 0.34);
    color: var(--cc-grey);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.42;
}
.sf-cc-bk-ack-form { display: grid; gap: 8px; }
.sf-cc-bk-ack {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 9px;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid rgba(176, 155, 128, 0.28);
    border-radius: 14px;
    background: rgba(255, 252, 247, 0.34);
    color: var(--cc-ink);
    cursor: pointer;
}
.sf-cc-bk-ack input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--cc-gold-deep);
}
.sf-cc-bk-ack span { display: grid; gap: 2px; font-size: 0.76rem; line-height: 1.35; color: var(--cc-grey); }
.sf-cc-bk-ack strong { font-size: 0.82rem; color: var(--cc-ink); }
.sf-cc-bk-ack a { color: var(--cc-gold-deep); font-weight: 900; text-decoration: none; border-bottom: 1px solid rgba(176, 155, 128, 0.55); }
.sf-cc-bk-note { color: var(--cc-grey); font-size: 0.74rem; font-weight: 800; text-align: center; }
.sf-cc-bk-ack-form button:disabled { opacity: 0.48; cursor: not-allowed; }
