/* Modal (shared across all pages) */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 200; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); max-width: 560px; width: 100%; padding: 2.5rem; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-muted); line-height: 1; }
.modal-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.modal-body { font-size: .98rem; line-height: 1.40; }
.modal-body h3 { font-family: var(--font-cond); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; color: var(--crimson); margin: 1.25rem 0 .5rem; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin: 0 0 .9rem; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-body strong { font-weight: 600; }

@media (max-width: 600px) {
  .modal-overlay { padding: .5rem; }
  .modal { padding: 1.25rem; max-height: 92vh; }
}
