/* Eagle Cove — Send me a Message box + modal */
.ecmb{max-width:540px;margin:0 auto;width:100%;text-align:left}
.ecmb *{box-sizing:border-box}
.ecmb-box{background:#fff;border-radius:16px;padding:22px;box-shadow:0 18px 40px rgba(10,12,15,.18)}
.ecmb-msg{width:100%;min-height:110px;resize:vertical;border:1px solid #E2E0DB;border-radius:10px;
  padding:14px 16px;font:inherit;font-size:16px;color:#15181D;background:#fff;line-height:1.5;outline:none;transition:border-color .15s}
.ecmb-msg::placeholder{color:#9AA0A6}
.ecmb-msg:focus{border-color:#F05A28;box-shadow:0 0 0 3px rgba(240,90,40,.14)}
.ecmb-msg.ecmb-err{border-color:#E23b2b;box-shadow:0 0 0 3px rgba(226,59,43,.14)}
.ecmb-send{margin-top:12px;width:100%;border:0;border-radius:8px;background:#F05A28;color:#fff;
  font:inherit;font-weight:700;font-size:16px;padding:14px 18px;cursor:pointer;transition:background .15s}
.ecmb-send:hover{background:#15181D}

/* modal */
.ecmb-modal[hidden]{display:none}
.ecmb-modal{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:20px}
.ecmb-overlay{position:absolute;inset:0;background:rgba(10,12,15,.72);backdrop-filter:blur(2px);animation:ecmb-fade .2s ease}
.ecmb-card{position:relative;width:100%;max-width:440px;background:#15181D;color:#fff;border-radius:18px;
  padding:34px 32px 30px;box-shadow:0 30px 70px rgba(0,0,0,.5);animation:ecmb-pop .25s cubic-bezier(.2,.8,.25,1)}
.ecmb-x{position:absolute;top:12px;right:14px;background:transparent;border:0;color:#8B9096;font-size:26px;line-height:1;cursor:pointer;padding:4px}
.ecmb-x:hover{color:#fff}
.ecmb-title{margin:0 0 6px;font-size:23px;font-weight:800;color:#fff;line-height:1.2}
.ecmb-sub{margin:0 0 18px;font-size:15px;color:#C9CCD1;line-height:1.5}
.ecmb-card input{width:100%;margin-bottom:11px;border:1px solid #C9CCD1;border-radius:10px;background:#fff;
  color:#15181D;font:inherit;font-size:16px;padding:13px 15px;outline:none;transition:border-color .15s}
.ecmb-card input::placeholder{color:#9AA0A6}
.ecmb-card input:focus{border-color:#F05A28;box-shadow:0 0 0 3px rgba(240,90,40,.18)}
.ecmb-submit{width:100%;margin-top:6px;border:0;border-radius:8px;background:#F05A28;color:#fff;
  font:inherit;font-weight:700;font-size:16px;padding:14px 18px;cursor:pointer;transition:background .15s}
.ecmb-submit:hover{background:#fff;color:#15181D}
.ecmb-submit:disabled{opacity:.7;cursor:default}
.ecmb-result{margin-top:12px;font-size:14px;min-height:1px}
.ecmb-result.ecmb-bad{color:#FF9C8A}
.ecmb-success{text-align:center;padding:10px 0}
.ecmb-check{width:56px;height:56px;margin:0 auto 14px;border-radius:50%;background:#F05A28;color:#fff;
  font-size:30px;line-height:56px;text-align:center}
.ecmb-success p{color:#E7E9EC;font-size:16px;margin:0;line-height:1.5}
@keyframes ecmb-fade{from{opacity:0}to{opacity:1}}
@keyframes ecmb-pop{from{opacity:0;transform:translateY(14px) scale(.98)}to{opacity:1;transform:none}}
@media(max-width:480px){.ecmb-card{padding:28px 22px}.ecmb-title{font-size:20px}}
