/* ===================================================================
   PearGRN refined footer — v1_new pages only
   Deep ink-green surface, muted links, quiet bottom bar.
   =================================================================== */

.ft {
    background: linear-gradient(180deg, #262c31 0%, #1e2327 100%);
    color: rgba(255, 255, 255, .72);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif;
    font-size: .88rem;
    line-height: 1.65;
    margin-top: 56px;
}
.ft a { text-decoration: none; transition: color .18s ease; }
.ft-wrap {
    max-width: 1160px; margin: 0 auto; padding: 44px 24px 0;
}

/* ---------- brand row ---------- */
.ft-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap; padding-bottom: 30px;
}
.ft-brand { display: flex; align-items: center; gap: 14px; }
.ft-brand img {
    width: 50px; height: 50px; border-radius: 11px; display: block;
    background: #fff; padding: 5px; box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.ft-name {
    font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em;
    color: #fff; line-height: 1.2;
}
.ft-tag {
    font-size: .8rem; color: rgba(255, 255, 255, .45);
    letter-spacing: .02em;
}
.ft-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ft-badges img {
    height: 58px; width: auto; max-width: 300px; display: block;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 10px; padding: 8px 14px;
    box-sizing: border-box;
}

/* ---------- rule ---------- */
.ft-rule {
    height: 1px; margin-bottom: 34px;
    background: linear-gradient(90deg, rgba(126, 200, 137, .55), rgba(255, 255, 255, .10) 55%, transparent);
}

/* ---------- link grid ---------- */
.ft-grid {
    display: grid; gap: 32px;
    grid-template-columns: repeat(4, 1fr);
}
.ft-title {
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em; color: rgba(190, 233, 192, .85);
    margin: 0 0 14px; display: flex; align-items: center; gap: 10px;
}
.ft-title::after {
    content: ""; flex: 1; height: 1px; max-width: 44px;
    background: rgba(126, 200, 137, .25);
}
.ft-col > * + .ft-title { margin-top: 30px; }

.ft-links { list-style: none; margin: 0; padding: 0; }
.ft-links li { margin: 0; }
.ft-links a {
    display: inline-block; padding: 3.5px 0;
    color: rgba(255, 255, 255, .66); font-size: .88rem;
}
.ft-links a:hover { color: #bee9c0; transform: translateX(2px); }

/* ---------- contact column ---------- */
.ft-contact { list-style: none; margin: 0; padding: 0; }
.ft-contact li { margin-bottom: 12px; color: rgba(255, 255, 255, .66); }
.ft-contact span {
    display: block; font-size: .68rem; text-transform: uppercase;
    letter-spacing: .12em; color: rgba(255, 255, 255, .38);
    margin-bottom: 2px;
}
.ft-contact a { color: rgba(255, 255, 255, .66); }
.ft-contact a:hover { color: #bee9c0; }

/* ---------- bottom bar ---------- */
.ft-bottom {
    margin-top: 40px; padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}
.ft-copy {
    margin: 0; font-size: .78rem; color: rgba(255, 255, 255, .42);
}
.ft-mini { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.ft-mini a {
    font-size: .8rem; color: rgba(255, 255, 255, .55);
    padding: 2px 0; border-bottom: 1.5px solid transparent;
}
.ft-mini a:hover { color: #bee9c0; border-bottom-color: rgba(126, 200, 137, .5); }

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
    .ft-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .ft-grid { grid-template-columns: 1fr; }
    .ft-top { flex-direction: column; align-items: flex-start; }
    .ft-badges img { max-width: 200px; height: auto; }
    .ft-bottom { flex-direction: column; align-items: flex-start; }
}
