body { font-family: 'Inter', sans-serif; background-color: #ffffff; color: #1e293b; }
h1, h2, .serif { font-family: 'Cormorant Garamond', serif; }
.bg-navy { background-color: #0f172a; }
.text-navy { color: #0f172a; }
.border-soft { border-color: #f1f5f9; }

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.8); /* bg-navy with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #ffffff;
    color: #1e293b;
    padding: 2rem;
    border-radius: 0.125rem; /* rounded-sm */
    max-width: 42rem; /* max-w-3xl */
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 300;
    color: #94a3b8; /* slate-400 */
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover {
    color: #0f172a; /* navy */
}