/* ═══════════════════════════════════════════════════════════════
   COASTAL FOOTER
   ═══════════════════════════════════════════════════════════════ */

.coastal-footer {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 80px 60px 40px;
}

.coastal-footer__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.coastal-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ─── BRAND ────────────────────────────────────────────────── */
.coastal-footer__brand p {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-top: 20px;
    max-width: 280px;
}

.coastal-footer__brand img {
    height: 48px;
    filter: brightness(0) invert(1);
}

/* ─── COLUMNS ──────────────────────────────────────────────── */
.coastal-footer__col h5 {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.coastal-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coastal-footer__col ul li {
    margin-bottom: 12px;
}

.coastal-footer__col ul li a {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    transition: color 0.3s;
}

.coastal-footer__col ul li a:hover {
    color: var(--gold);
}

.coastal-footer__col address {
    font-style: normal;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.70);
    line-height: 1.8;
}

.coastal-footer__col address a {
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-top: 4px;
}

.coastal-footer__col address a:hover {
    color: var(--gold);
}

/* ─── BOTTOM BAR ──────────────────────────────────────────── */
.coastal-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.coastal-footer__bottom p {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
}

.coastal-footer__license {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .coastal-footer {
        padding: 60px 32px 32px;
    }

    .coastal-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .coastal-footer {
        padding: 48px 24px 28px;
    }

    .coastal-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    /* Brand spans full width */
    .coastal-footer__top > *:first-child {
        grid-column: 1 / -1;
    }

    /* Contact spans full width */
    .coastal-footer__top > *:last-child {
        grid-column: 1 / -1;
    }

    .coastal-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
