:root {
    --ftr-bg:       #080808;
    --ftr-surface:  #0e0e0e;
    --ftr-border:   rgba(255, 255, 255, 0.07);
    --ftr-accent:   #d97c20;
    --ftr-text:     #e8e4dc;
    --ftr-muted:    #7a7570;
    --ftr-wa-green: #25d366;
    --ftr-fb-blue:  #2576d3;
    --ftr-go-red:   #c94b4b;
    --ff-display:   'Barlow Condensed', sans-serif;
    --ff-body:      'DM Sans', sans-serif;
}

/* ── Footer ─────────────────────────────── */
.ftr {
    background: var(--ftr-bg);
    border-top: 1px solid var(--ftr-border);
    padding: 60px 0 32px;
    font-family: var(--ff-body);
}

.ftr-container {
    width: 90%;
    max-width: 1320px;
    margin: 0 auto;
}

/* ── Footer top — 3-column grid ─────────── */
.ftr-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

/* Brand */
.ftr-brand a img {
    height: 36px;
    display: block;
    opacity: 0.8;
    margin-bottom: 12px;
}

.ftr-brand p {
    font-size: 0.88rem;
    color: var(--ftr-muted);
    line-height: 1.7;
    max-width: 280px;
}

/* Column title */
.ftr-col-title {
    font-family: var(--ff-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ftr-text);
    margin-bottom: 16px;
}

/* Nav links — vertical list */
.ftr-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftr-nav a {
    font-size: 0.88rem;
    color: var(--ftr-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.ftr-nav a:hover { color: var(--ftr-accent); }

/* Social icons */
.ftr-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.ftr-social {
    width: 36px;
    height: 36px;
    background: var(--ftr-surface);
    border: 1px solid var(--ftr-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ftr-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.ftr-social:hover         { border-color: var(--ftr-accent);   color: var(--ftr-accent);   }
.ftr-social--wa:hover     { border-color: var(--ftr-wa-green); color: var(--ftr-wa-green); }
.ftr-social--fb:hover     { border-color: var(--ftr-fb-blue);  color: var(--ftr-fb-blue);  }
.ftr-social--go:hover     { border-color: var(--ftr-go-red);   color: var(--ftr-go-red);   }

/* ── Footer bottom ───────────────────────── */
.ftr-bottom {
    border-top: 1px solid var(--ftr-border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ftr-copy {
    font-size: 0.82rem;
    color: var(--ftr-muted);
}

.ftr-copy a {
    color: var(--ftr-accent);
    text-decoration: none;
    transition: opacity 0.2s;
}
.ftr-copy a:hover { opacity: 0.75; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .ftr-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .ftr-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .ftr-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}