/* ═══════════════════════════════════════════════════════════
   EAS FOOTER — CUSTOM OWNED STYLES
   East Africa Safari Guides
   Zero page-builder dependency — pure CSS
═══════════════════════════════════════════════════════════ */

.eas-footer {
    background: #141414;
    color: #C8BFA8;
    font-family: var(--eas-font-nav, 'Jost', sans-serif);
}

/* ─── RESET ─── */
.eas-footer *,
.eas-footer *::before,
.eas-footer *::after {
    box-sizing: border-box;
}

/* ─── MAIN BODY ─── */
.eas-footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid #222;
}

.eas-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 60px;
}

/* ─── BRAND COLUMN ─── */
.eas-footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 24px;
    display: block;
    /* Tint logo to warm cream to read on dark bg */
    filter: brightness(0) saturate(100%) invert(86%) sepia(12%) saturate(300%) hue-rotate(5deg) brightness(90%);
}

.eas-footer-ethos {
    font-family: var(--eas-font-head, 'Cormorant Garamond', serif);
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
    color: #9A9080;
    margin-bottom: 32px;
    max-width: 280px;
}

.eas-footer-coords {
    margin-bottom: 28px;
}

.eas-footer-label {
    display: block;
    font-size: 9px;
    letter-spacing: 3px;
    color: #C8A96E;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.eas-footer-coords address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.9;
    color: #7A7060;
}

.eas-footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.eas-social-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    line-height: 0;
}

.eas-social-link:hover {
    color: #C8A96E;
}

/* ─── ALL COLUMNS ─── */
.eas-footer-col {
    display: flex;
    flex-direction: column;
}

.eas-footer-heading {
    font-size: 9px;
    letter-spacing: 3px;
    color: #C8A96E;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #222;
    display: block;
    font-family: var(--eas-font-nav, 'Jost', sans-serif);
}

/* ─── NAV COLUMNS ─── */
.eas-footer-col nav {
    display: flex;
    flex-direction: column;
}

.eas-footer-col nav a {
    font-size: 14px;
    color: #C8BFA8;
    text-decoration: none;
    line-height: 2.3;
    transition: color 0.25s;
    font-family: var(--eas-font-nav, 'Jost', sans-serif);
    font-weight: 300;
}

.eas-footer-col nav a:hover {
    color: #C8A96E;
}

/* ─── CONTACT COLUMN ─── */
.eas-footer-contact-text {
    font-family: var(--eas-font-head, 'Cormorant Garamond', serif);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: #7A7060;
    margin-bottom: 24px;
}

.eas-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.eas-footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #C8BFA8;
    text-decoration: none;
    transition: color 0.25s;
    letter-spacing: 0.5px;
    font-family: var(--eas-font-nav, 'Jost', sans-serif);
    font-weight: 300;
}

.eas-footer-contact-link:hover {
    color: #C8A96E;
}

.eas-footer-contact-link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.eas-footer-cta {
    display: inline-block;
    font-family: var(--eas-font-nav, 'Jost', sans-serif);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C8A96E;
    border: 1px solid #C8A96E;
    padding: 14px 28px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.eas-footer-cta:hover {
    background: #C8A96E;
    color: #141414;
}

/* ─── BOTTOM BAR ─── */
.eas-footer-bottom {
    background: #0D0D0D;
    padding: 20px 0;
}

.eas-footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eas-footer-bottom p {
    font-size: 11px;
    color: #555;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: var(--eas-font-nav, 'Jost', sans-serif);
}

.eas-footer-bottom nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eas-footer-bottom nav a {
    font-size: 11px;
    color: #555;
    text-decoration: none;
    transition: color 0.25s;
    letter-spacing: 0.5px;
    font-family: var(--eas-font-nav, 'Jost', sans-serif);
}

.eas-footer-bottom nav a:hover {
    color: #C8A96E;
}

.eas-footer-bottom nav span {
    color: #333;
    font-size: 11px;
}

/* ─── RESPONSIVE — 1100px ─── */
@media (max-width: 1100px) {
    .eas-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .eas-footer-brand {
        grid-column: 1 / -1;
    }

    .eas-footer-ethos {
        max-width: 100%;
    }

    .eas-footer-bottom-inner {
        padding: 0 40px;
    }
}

/* ─── RESPONSIVE — 640px ─── */
@media (max-width: 640px) {
    .eas-footer-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 32px;
    }

    .eas-footer-main {
        padding: 60px 0 40px;
    }

    .eas-footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 0 24px;
    }

    .eas-footer-bottom nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
