/* ── NEWSLETTER CARD ──────────────────────────── */
.footer-wrap { background: var(--bg); padding: 100px 48px 0; }
.fnl-outer { max-width: 1040px; margin: 0 auto; position: relative; z-index: 2; margin-bottom: -64px; }
.fnl-card { background: var(--orange); border-radius: 0 14px 0 14px; display: grid; grid-template-columns: 280px 1fr; align-items: center; overflow: visible; position: relative; padding-right: 48px; }
.fnl-card > * { position: relative; z-index: 1; }
.fnl-img { display: flex; align-items: flex-end; justify-content: center; padding: 0 24px; margin-top: -56px; }
.fnl-img img { width: 200px; height: 220px; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(0,0,0,0.25)); }
.fnl-content { padding: 52px 0; width: 100%; }
.fnl-eyebrow { display: inline-block; font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.fnl-title { font-family: var(--display); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 400; color: #fff; line-height: 1; margin-bottom: 14px; white-space: nowrap; }
.fnl-title-accent { color: #1A1A1A; }
.fnl-sub { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-bottom: 24px; line-height: 1.6; }
.fnl-form { display: flex; align-items: center; background: #fff; border-radius: 0 14px 0 14px; padding: 5px 5px 5px 14px; gap: 8px; margin-bottom: 10px; width: 100%; }
.fnl-form-icon { color: #9ca3af; font-size: 0.9rem; flex-shrink: 0; }
.fnl-form input { flex: 1; border: none; outline: none; font-size: 0.85rem; color: #374151; background: transparent; padding: 7px 0; font-family: sans-serif; }
.fnl-form input::placeholder { color: #9ca3af; }
.fnl-form button { background: #1A1A1A; color: #fff; border: none; border-radius: 0 14px 0 14px; padding: 9px 18px; font-size: 0.82rem; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: sans-serif; }
.fnl-note { font-size: 0.72rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.fnl-note a { color: rgba(255,255,255,0.85); text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: #1A1A1A; padding: 112px 48px 0; position: relative; }
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(245,240,232,0.1); }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-row img { width: 32px; height: 32px; object-fit: contain; }
.footer-brand { font-size: 1rem; font-weight: 700; color: var(--white); font-family: sans-serif; }
.footer-tagline { font-size: 0.825rem; color: rgba(245,240,232,0.6); line-height: 1.7; margin-bottom: 20px; max-width: 200px; font-family: sans-serif; }
.footer-socials { display: flex; gap: 8px; }
.f-social { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-2); font-size: 0.65rem; font-weight: 700; color: var(--gray-lt); text-decoration: none; transition: background 0.2s, color 0.2s; }
.f-social:hover { background: var(--orange); color: var(--white); }
.footer-heading { font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.12em; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.85rem; color: rgba(245,240,232,0.6); text-decoration: none; transition: color 0.2s; font-family: sans-serif; }
.footer-links a:hover { color: var(--white); }
.footer-bottom-bar { border-top: 1px solid rgba(245,240,232,0.08); padding: 28px 48px; margin-top: 56px; }
.footer-bottom-inner { max-width: 1040px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.8rem; color: rgba(245,240,232,0.45); font-family: sans-serif; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(245,240,232,0.45); text-decoration: none; transition: color 0.2s; font-family: sans-serif; }
.footer-legal a:hover { color: var(--orange); }

/* ── FOOTER RESPONSIVE ───────────────────────── */
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .fnl-card { grid-template-columns: 1fr; padding: 40px 32px 40px; }
    .fnl-img { margin-top: 0; justify-content: flex-start; }
}
@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .footer-legal { justify-content: center; flex-wrap: wrap; }
    .fnl-outer { margin-bottom: -32px; }
    .footer-wrap { padding: 100px 24px 0; }
}
