/* ============================================================
   Someday — shared Calendly scheduling modal.
   Any "schedule"/"calendly" button opens it (auto-wired by JS).
   ============================================================ */
.cm-overlay { position: fixed; inset: 0; background: rgba(48,49,79,0.48); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; padding: 24px; z-index: 4000; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; font-family: 'FuturaPT','Futura','Century Gothic',sans-serif; }
.cm-overlay.open { opacity: 1; pointer-events: auto; }
.cm-modal { background: #fff; border-radius: 14px; width: 640px; max-width: 100%; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 32px 80px rgba(48,49,79,0.22), 0 4px 20px rgba(48,49,79,0.1); transform: translateY(10px) scale(0.99); transition: transform 0.2s ease; }
.cm-overlay.open .cm-modal { transform: none; }
.cm-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid rgba(48,49,79,0.12); flex-shrink: 0; }
.cm-brand { display: flex; align-items: baseline; gap: 10px; }
.cm-wm { font-family: 'Romie', Georgia, serif; font-style: italic; font-size: 18px; color: #30314F; }
.cm-via { font-size: 10px; letter-spacing: 0.08em; color: rgba(48,49,79,0.45); text-transform: uppercase; }
.cm-close { width: 28px; height: 28px; border-radius: 50%; background: #EDE8DF; border: none; cursor: pointer; color: rgba(48,49,79,0.5); font-size: 14px; line-height: 1; }
.cm-close:hover { color: #30314F; }
.cm-body { display: flex; flex: 1; overflow: hidden; }
.cm-left { width: 230px; flex-shrink: 0; border-right: 1px solid rgba(48,49,79,0.12); padding: 20px; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; }
.cm-avatar { width: 44px; height: 44px; border-radius: 50%; background: #30314F; color: #F8F4ED; display: flex; align-items: center; justify-content: center; font-family: 'Romie', serif; font-style: italic; font-size: 18px; }
.cm-adv-name { font-family: 'Romie', serif; font-style: italic; font-size: 16px; color: #30314F; }
.cm-adv-role { font-size: 11px; color: rgba(48,49,79,0.45); margin-top: 2px; }
.cm-meeting { padding: 12px; background: #F4F2EE; border: 1px solid rgba(48,49,79,0.12); border-radius: 8px; }
.cm-m-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(48,49,79,0.45); margin-bottom: 3px; }
.cm-m-name { font-family: 'Romie', serif; font-style: italic; font-size: 15px; color: #30314F; }
.cm-m-dur { font-size: 11px; color: rgba(48,49,79,0.6); margin-top: 2px; }
.cm-note { font-size: 11px; color: rgba(48,49,79,0.45); line-height: 1.6; }
.cm-right { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; }
.cm-date { font-family: 'Romie', serif; font-style: italic; font-size: 18px; color: #30314F; }
.cm-tz { font-size: 10px; color: rgba(48,49,79,0.45); margin: 3px 0 14px; }
.cm-days { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.cm-day { padding: 8px 10px; border: 1px solid rgba(48,49,79,0.12); border-radius: 8px; font-size: 12px; color: rgba(48,49,79,0.7); cursor: pointer; text-align: center; min-width: 56px; background: #fff; transition: all 0.12s; }
.cm-day:hover { border-color: rgba(48,49,79,0.3); }
.cm-day.active { background: #30314F; color: #F8F4ED; border-color: #30314F; }
.cm-slots { display: flex; flex-direction: column; gap: 7px; }
.cm-slot { padding: 11px 14px; border: 1px solid rgba(48,49,79,0.12); border-radius: 8px; font-size: 13px; color: rgba(48,49,79,0.75); cursor: pointer; background: #F8F4ED; text-align: center; transition: all 0.15s; }
.cm-slot:hover { border-color: rgba(48,49,79,0.3); }
.cm-slot.active { background: #30314F; color: #F8F4ED; border-color: #30314F; }
.cm-confirm { margin-top: 16px; padding: 13px; background: #4c51af; color: #F8F4ED; border: none; border-radius: 8px; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: inherit; transition: background 0.2s, opacity 0.2s; }
.cm-confirm:hover { background: #3d4291; }
.cm-confirm:disabled { opacity: 0.4; cursor: default; }
.cm-done { padding: 48px 28px; text-align: center; }
.cm-done-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(76,81,175,0.12); color: #4c51af; display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 16px; }
.cm-done-h { font-family: 'Romie', serif; font-style: italic; font-size: 1.6rem; color: #30314F; margin-bottom: 8px; }
.cm-done-p { font-size: 0.85rem; color: rgba(48,49,79,0.5); line-height: 1.65; max-width: 320px; margin: 0 auto; }
@media (max-width: 560px) { .cm-left { display: none; } }
