/* Site footer bar + legal pages (Privacy, Terms).
   On any page: <link rel="stylesheet" href="assets/site-footer.css">
   Compact links: copy partials/site-footer.html before </body>.
   Policy text: privacy-policy.html | terms-of-use.html */

/* —— Compact legal links (home + future pages) —— */
.site-footer-bar {
    position: relative;
    z-index: 10;
    margin-top: 2.5rem;
    padding: 1.5rem 1rem 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

.site-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1rem;
}

/* Bracketed / counsel-review placeholders in terms-of-use.html */
.terms-tbd {
    background: rgba(255, 95, 31, 0.08);
    border-left: 3px solid rgba(255, 95, 31, 0.45);
    padding: 0.65rem 0.85rem;
    border-radius: 0 6px 6px 0;
}

.privacy-policy-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    border: 2px solid #FF5F1F;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 95, 31, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-policy-link:hover {
    background: #FF5F1F;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 95, 31, 0.3);
}

.privacy-policy-link:active {
    transform: translateY(0);
}

/* —— Standalone privacy-policy.html —— */
.privacy-policy-body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #011E42;
    min-height: 100vh;
    padding: 1.5rem 1.25rem 3rem;
    text-align: left;
}

.privacy-policy-back {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: #FF5F1F;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-policy-back:hover {
    color: #ff7a3d;
    text-decoration: underline;
}

.site-footer--standalone {
    margin-top: 0;
    padding: 0 0 2rem;
    border-top: none;
    background: transparent;
}

/* —— Full policy content (embedded footer block or standalone main) —— */
.site-footer {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
    padding: 3rem 1.5rem 4rem;
    background: rgba(0, 0, 0, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.site-footer-inner {
    max-width: 44rem;
    margin: 0 auto;
}

.site-footer-heading {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.35rem;
}

.site-footer-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2rem;
}

.site-footer-section {
    margin-bottom: 1.75rem;
}

.site-footer-h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #01B9B3;
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.site-footer-h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin: 1.25rem 0 0.5rem;
}

.site-footer p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 0.85rem;
}

.site-footer ul {
    margin: 0 0 0.85rem 1.1rem;
    padding: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer li {
    margin-bottom: 0.35rem;
}

.site-footer a {
    color: #FF5F1F;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer a:hover {
    color: #ff7a3d;
}

.site-footer-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer-contact p {
    margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
    .site-footer {
        padding: 2.5rem 1rem 3rem;
    }

    .site-footer-heading {
        font-size: 1.15rem;
    }
}
