body.contact-modal-open { overflow: hidden; }
.contact-dialog:not([open]) { display: none; }
.contact-dialog {
    width: 590px; max-width: calc(100vw - 32px); max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px);
    margin: auto; padding: 0; border: 0; border-radius: 24px; overflow: auto;
    color: #35283d; background: #fff; box-shadow: 0 28px 100px #26112c55;
    font-family: 'Ubuntu', sans-serif; text-align: left;
}
.contact-dialog::backdrop { background: #301738b8; backdrop-filter: blur(5px); }
.contact-dialog[open] { animation: contact-appear .2s ease-out; }
.contact-heading { position: relative; padding: 38px 32px 30px; background: linear-gradient(120deg, #fbf0f7, #f0e8fa); overflow: hidden; }
.contact-eyebrow { position: relative; z-index: 1; color: #91567d; font-size: 10px; letter-spacing: 1.7px; font-weight: 700; }
.contact-heading h2 { position: relative; z-index: 1; margin: 12px 0; font: 700 30px/1.2 'Ubuntu', sans-serif; color: #593362; }
.contact-heading p { position: relative; z-index: 1; margin: 0; font-size: 14px; line-height: 1.65; color: #78677e; }
.contact-product { position: absolute; width: 155px; right: -32px; bottom: -30px; opacity: .24; transform: rotate(-15deg); pointer-events: none; }
.contact-close { position: absolute; z-index: 2; right: 14px; top: 14px; display: grid; place-items: center; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #ffffffa8; color: #805c86; cursor: pointer; }
.contact-close svg { width: 18px; height: 18px; }
.contact-content { padding: 24px 32px 16px; }
.contact-card { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; padding: 16px; border: 1px solid #eee5f0; border-radius: 14px; background: #fff; color: #35283d; text-decoration: none; transition: background .15s, border-color .15s; }
a.contact-card:hover { background: #fcf7fc; border-color: #cfa9d0; text-decoration: none; color: #743c80; }
.contact-icon { display: grid; place-items: center; flex: 0 0 44px; height: 44px; border-radius: 13px; background: #f6edf7; color: #a455a3; }
.contact-icon svg { width: 23px; height: 23px; }
.contact-details { display: flex; flex: 1; min-width: 0; flex-direction: column; gap: 4px; }
.contact-label { font-size: 12px; color: #85758b; }
.contact-details strong { font-size: 20px; font-weight: 500; line-height: 1.35; overflow-wrap: anywhere; }
.contact-arrow { color: #b494bb; font-size: 24px; }
.contact-max { flex-wrap: wrap; background: #faf8ff; }
.contact-max .contact-icon { background: #ede7ff; color: #7955bc; }
.contact-hint { font-size: 11px; line-height: 1.5; color: #85758b; }
.contact-copy { border: 1px solid #dfd1ec; border-radius: 8px; background: #fff; padding: 9px 10px; font: 500 11px 'Ubuntu', sans-serif; color: #79558a; cursor: pointer; }
.contact-copy:hover { background: #f0e7f7; }
.contact-hours { display: flex; gap: 12px; align-items: center; margin-top: 22px; padding: 0 4px; }
.contact-hours svg { flex: 0 0 20px; width: 20px; height: 20px; color: #a18aa8; }
.contact-hours strong { display: block; font-size: 13px; font-weight: 500; }
.contact-hours span { display: block; margin-top: 5px; font-size: 11px; color: #918497; }
.contact-status { margin: 10px 0 0; min-height: 16px; font-size: 12px; color: #79558a; line-height: 1.5; }
.contact-dialog :focus-visible { outline: 3px solid #b66cb8; outline-offset: 3px; }
@keyframes contact-appear { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 480px) {
    .contact-dialog { border-radius: 20px; }
    .contact-heading { padding: 40px 20px 24px; }
    .contact-heading h2 { font-size: 26px; }
    .contact-heading p { font-size: 12px; }
    .contact-eyebrow { font-size: 9px; letter-spacing: 1px; }
    .contact-content { padding: 18px 16px 12px; }
    .contact-card { padding: 13px 12px; gap: 10px; }
    .contact-icon { flex-basis: 36px; height: 36px; border-radius: 10px; }
    .contact-details strong { font-size: 17px; }
    .contact-copy { margin-left: 46px; }
    .contact-max .contact-details { flex: 0 0 calc(100% - 46px); }
    .contact-arrow { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) { .contact-dialog[open] { animation: none; } }
