/* ── Hubbard Insurance — "Under construction" placeholder ───────────────
   Single-page placeholder while the real marketing site is being
   designed. Dark theme, logo prominent, friendly construction badge,
   contact link + client-portal link so existing clients aren't
   stranded. Self-contained — no CDN dependencies. */

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #0a0e14;
    color: #e8eaed;
    font-family: "Iowan Old Style", "Apple Garamond", "Baskerville",
                 "Times New Roman", "Droid Serif", "Times", serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: #9bc6ff; text-decoration: none; }
a:hover { color: #cfe1ff; text-decoration: underline; }

/* ── Construction placeholder layout ─────────────────────────────────── */
.construction-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background:
        radial-gradient(ellipse at 50% 30%,
            rgba(58, 142, 255, 0.18) 0%,
            rgba(20, 35, 70, 0.5) 35%,
            #06090f 80%),
        linear-gradient(180deg, #050810 0%, #0a1428 60%, #06090f 100%);
}

.construction-panel {
    max-width: 540px;
    width: 100%;
    text-align: center;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid #1a2233;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.construction-logo {
    width: 110px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 6px;
}

.construction-panel h1 {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0 0 24px;
}

/* "Under construction" badge: icon + label */
.construction-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(245, 196, 58, 0.1);
    border: 1px solid rgba(245, 196, 58, 0.35);
    border-radius: 999px;
    margin: 8px 0 28px;
}
.construction-badge svg { display: block; }
.construction-badge span {
    color: #f5c43a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.construction-message {
    font-size: clamp(15px, 1.8vw, 17px);
    color: #c8cfd9;
    margin: 0 0 32px;
}

.construction-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 36px;
}

.construction-footer {
    font-size: 12px;
    color: #6c7989;
    margin: 0;
    border-top: 1px solid #1a2233;
    padding-top: 20px;
}

/* ── CTA buttons (shared) ────────────────────────────────────────────── */
.cta {
    display: inline-block;
    padding: 12px 28px;
    background: #f5f1e6;
    color: #0a0e14;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 1px solid #f5f1e6;
    transition: background 0.15s ease, color 0.15s ease;
    min-width: 280px;
    text-align: center;
}
.cta:hover {
    background: #ffffff;
    color: #0a0e14;
    text-decoration: none;
}
.cta.cta-secondary {
    background: transparent;
    color: #f5f1e6;
}
.cta.cta-secondary:hover {
    background: rgba(245, 241, 230, 0.08);
    color: #ffffff;
}
