/* ── FOOTER ── */
footer {
    background: var(--navy, #0d3320);
    border-top: 1px solid #1a3d2b;
    padding: 1.25rem 2.5rem;
    margin-top: auto;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    color: #4caf50;
    font-size: .95rem;
}
.footer-copy {
    font-size: .72rem;
    color: #3a8a5a;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    color: #3a8a5a;
}
.footer-links a {
    color: #4caf50;
    text-decoration: none;
    transition: color .2s;
}
.footer-links a:hover { color: #fff; }

/* Disclaimer-Modal */
.disc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.disc-overlay.open { display: flex; }
.disc-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    color: #0d2818;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    line-height: 1.7;
}
.disc-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #0d3320;
    margin-bottom: 1.25rem;
}
.disc-box h3 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #1b6b3a;
    margin: 1.25rem 0 .4rem;
    font-weight: 600;
}
.disc-box p { margin-bottom: .75rem; color: #1a3d2b; }
.disc-box ul {
    margin: .4rem 0 .75rem 1.25rem;
    color: #1a3d2b;
}
.disc-box ul li { margin-bottom: .25rem; }
.disc-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #d4eeda;
    font-size: .78rem;
    color: #5a8a6a;
    text-align: center;
}
.disc-footer a { color: #1b6b3a; text-decoration: none; }

@media(max-width:600px) {
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .disc-box { padding: 1.5rem; }
}
