.site-footer {
    margin-top: 6rem;
    border-top: 2px solid rgba(180, 140, 50, 0.5);
    background: #0c0f14;
}

.ft-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ft-main {
    padding: 3.5rem 0 3rem;
}

.ft-main > .ft-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.ft-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(180, 140, 50, 0.7);
    margin: 0 0 0.75rem;
}

.ft-heading {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #f3f4f6;
    line-height: 1.15;
    margin: 0 0 0.5rem;
}

.ft-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: #9ca3af;
    line-height: 1.55;
    margin: 0 0 1.5rem;
    max-width: 400px;
}

.ft-form {
    width: 100%;
    max-width: 420px;
}

.ft-input-row {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(180, 140, 50, 0.2);
    background: rgba(0, 0, 0, 0.35);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ft-input-row:focus-within {
    border-color: rgba(180, 140, 50, 0.4);
    box-shadow: 0 0 0 3px rgba(180, 140, 50, 0.06);
}

.ft-email {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: #f3f4f6;
    font-size: 0.85rem;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    outline: none;
}

.ft-email::placeholder {
    color: #4b5563;
    font-weight: 300;
}

.ft-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1.15rem;
    background: rgba(180, 140, 50, 0.12);
    border: none;
    border-left: 1px solid rgba(180, 140, 50, 0.2);
    color: rgba(220, 180, 80, 0.85);
    font-size: 0.72rem;
    font-weight: 500;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.ft-btn:hover {
    background: rgba(180, 140, 50, 0.22);
    color: rgba(240, 200, 100, 1);
}

.ft-btn:active {
    transform: scale(0.97);
}

.ft-btn svg {
    transition: transform 0.25s ease;
}

.ft-btn:hover svg {
    transform: translateX(2px);
}

.ft-legal {
    font-size: 0.68rem;
    color: #4b5563;
    letter-spacing: 0.05em;
    margin: 0.65rem 0 0;
}

.ft-nav-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    padding-top: 0.25rem;
}

.ft-identity {
    text-align: right;
}

.ft-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 400;
    color: #d1d5db;
    letter-spacing: 0.01em;
    margin: 0 0 0.25rem;
}

.ft-role {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(180, 140, 50, 0.55);
    margin: 0;
}

.ft-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.ft-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ft-links a:hover {
    color: rgba(220, 180, 80, 0.85);
}

.ft-social {
    text-align: right;
}

.ft-social-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(180, 140, 50, 0.55);
    margin: 0 0 0.6rem;
}

.ft-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.ft-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ft-social-link:hover {
    color: rgba(220, 180, 80, 0.85);
    transform: translateY(-1px);
}

.ft-bottom {
    border-top: 1px solid rgba(180, 140, 50, 0.15);
    padding: 1.5rem 0;
    background: #080a0e;
}

.ft-bottom .ft-container {
    display: flex;
    justify-content: center;
}

.ft-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    text-align: center;
}

.ft-signature p + p {
    position: relative;
    padding-left: 1rem;
}

.ft-signature p + p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(180, 140, 50, 0.35);
    transform: translateY(-50%);
}

.ft-copyright {
    font-size: 0.68rem;
    color: #4b5563;
    letter-spacing: 0.04em;
    margin: 0;
}

.ft-colophon {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.72rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(180, 140, 50, 0.4);
    letter-spacing: 0.02em;
    margin: 0;
}

.ft-credit {
    font-size: 0.62rem;
    font-weight: 400;
    color: #374151;
    letter-spacing: 0.06em;
    margin: 0;
}

.ft-credit a {
    color: #6b7280;
    text-decoration: none;
    border-bottom: 1px solid rgba(180, 140, 50, 0.2);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.ft-credit a:hover {
    color: rgba(220, 180, 80, 0.88);
    border-color: rgba(220, 180, 80, 0.5);
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 4rem;
    }

    .ft-main > .ft-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ft-nav-col {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 2rem;
        border-top: 1px solid rgba(180, 140, 50, 0.1);
    }

    .ft-identity {
        text-align: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .ft-links {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem 1.25rem;
        width: 100%;
    }

    .ft-social {
        text-align: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    .ft-social-icons {
        justify-content: center;
    }

    .ft-form {
        max-width: 100%;
    }

    .ft-desc {
        max-width: 100%;
    }

    .ft-heading {
        font-size: 1.3rem;
    }

    .ft-signature {
        flex-direction: column;
        gap: 0.35rem;
    }

    .ft-signature p + p {
        padding-left: 0;
    }

    .ft-signature p + p::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .ft-input-row {
        flex-direction: column;
        border-radius: 8px;
    }

    .ft-email {
        border-bottom: 1px solid rgba(180, 140, 50, 0.12);
    }

    .ft-btn {
        border-left: none;
        justify-content: center;
        padding: 0.7rem;
    }
}

@media print {
    .site-footer {
        display: none !important;
    }
}
