.brand,
.col h4 {
    font-family: 'Manrope', sans-serif
}

.ft {
    --muted: #a0a8b8;
    --line: rgba(255, 255, 255, .09);
    --gold: #daa520;
    --bg: #0a1e35;
    background: var(--bg);
    color: #e9e7e1
}

.ft-inner {
    max-width: 1500px;
    margin-inline: auto;
    padding: 48px 20px 24px
}

.ft-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--line)
}

.brand {
    font-size: 24px;
    font-weight: 800;
    color: #e8b96a;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    letter-spacing: .5px;
    text-decoration: none
}

.brand-logo {
    display: inline-block;
    text-decoration: none
}

.brand-logo .logo {
    height: 90px;
    width: auto;
    max-width: none;
    display: block
}

.brand .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 4px;
    flex-shrink: 0
}

.ft-blurb {
    color: var(--muted);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 320px
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: #cfcbc2;
    text-decoration: none;
    transition: background-color .25s, color .25s, border-color .25s, transform .2s
}

.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px)
}

.socials a.no-hover:hover {
    background: rgba(255, 255, 255, .08);
    border-color: var(--line);
    color: #cfcbc2
}

.socials svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    stroke: none
}

.socials img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block
}

.col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.col a,
.contact a,
.col li {
    color: var(--muted)
}

.col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    margin: 0
}

.col a {
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    transition: color .2s, padding-left .2s;
    display: inline-block;
    min-height: 40px;
    line-height: 40px
}

.col a:hover {
    padding-left: 5px;
    color: var(--gold)
}

.contact ul {
    gap: 14px
}

.contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted)
}

.contact a {
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--muted);
    transition: color .2s;
    display: inline-block;
    padding: 3px 0;
    min-height: 0;
    line-height: 1.6
}

.contact a:hover {
    color: var(--gold)
}

.contact svg {
    width: 16px;
    height: 16px;
    flex: none;
    margin-top: 3px;
    stroke: var(--gold);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.phone-list a {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    display: inline-block;
    min-height: 0;
    line-height: 1.6;
    padding: 2px 0;
    transition: color .2s
}

.phone-list a:hover {
    color: var(--gold)
}

.ft-bottom {
    border-top: 1px solid var(--line);
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.ft-bottom p,
.ft-legal a {
    color: #b8b4ac;
    font-size: 13px;
    font-family: 'Manrope', sans-serif
}

.ft-bottom p {
    margin: 0
}

.ft-legal {
    display: flex;
    gap: 24px
}

.ft-legal a {
    text-decoration: none;
    transition: color .2s
}

.ft-legal a:hover {
    color: var(--gold)
}

@media (max-width:1024px) {
    .ft-inner {
        padding: 48px 24px 24px
    }

    .ft-main {
        gap: 36px
    }
}

@media (min-width:640px) {
    .ft-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .ft-brand {
        grid-column: 1/-1
    }
}

@media (min-width:900px) {
    .ft-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .ft-brand {
        grid-column: 1/-1
    }
}

@media (min-width:1024px) {
    .ft-inner {
        padding: 60px 32px 28px
    }

    .ft-main {
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 48px
    }

    .ft-brand {
        grid-column: auto
    }
}

@media (max-width:560px) {
    .ft-inner {
        padding: 40px 16px 20px
    }

    .ft-main {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
}

.brand-logo .logo {
    height: 90px;
    max-width: auto;
}