/* ==========================================================================
   Maintenance Mode — main.css
   Scope: scoped to body.maintenance-mode so the theme is safe to keep
   installed alongside any plugin that loads its own CSS.
   ========================================================================== */

body.maintenance-mode {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    color: #1f2937;
    background: linear-gradient(135deg, #f5f7fb 0%, #e8edf5 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.maintenance-mode .mm-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.maintenance-mode .mm-hero {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
}

body.maintenance-mode .mm-hero__inner {
    max-width: 640px;
    width: 100%;
}

body.maintenance-mode .mm-logo {
    margin-bottom: 32px;
}

body.maintenance-mode .mm-logo img {
    max-width: 240px;
    height: auto;
    display: inline-block;
}

body.maintenance-mode .mm-eyebrow {
    margin: 0 0 24px;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
}

body.maintenance-mode .mm-title {
    margin: 0 0 20px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
}

body.maintenance-mode .mm-subtitle {
    margin: 0 auto 32px;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: #4b5563;
    max-width: 520px;
}

body.maintenance-mode .mm-divider {
    width: 56px;
    height: 3px;
    background: #2563eb;
    margin: 0 auto 32px;
    border-radius: 2px;
}

body.maintenance-mode .mm-contact {
    margin: 0;
    font-size: 15px;
    color: #4b5563;
}

body.maintenance-mode .mm-contact a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

body.maintenance-mode .mm-contact a:hover,
body.maintenance-mode .mm-contact a:focus {
    border-bottom-color: #2563eb;
}

body.maintenance-mode .mm-footer {
    padding: 20px 24px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.maintenance-mode .mm-footer p {
    margin: 0;
}

/* Subtle fade-in so the page doesn't pop in flat. */
@media (prefers-reduced-motion: no-preference) {
    body.maintenance-mode .mm-hero__inner {
        animation: mm-fade-in 0.6s ease-out both;
    }

    @keyframes mm-fade-in {
        from { opacity: 0; transform: translateY(8px); }
        to   { opacity: 1; transform: translateY(0);   }
    }
}
