/* ==========================================================
   P029M2 PROFESSIONAL FOOTER
   ========================================================== */

.pf-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    border-top:
        1px solid rgba(76,216,225,.22);

    color: #dcecef;

    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(44,201,215,.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(102,57,150,.19),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #092333 0%,
            #0a2a39 48%,
            #0a2031 100%
        );
}


.pf-footer::before {
    content: "";

    position: absolute;
    top: 0;
    inset-inline: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #4cd6df,
            rgba(208,170,87,.76),
            #43cbd6,
            transparent
        );
}


.pf-footer-light {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(70px);
}


.pf-footer-light-a {
    width: 410px;
    height: 410px;

    top: -250px;
    right: -130px;

    background:
        rgba(60,210,221,.11);
}


.pf-footer-light-b {
    width: 360px;
    height: 360px;

    bottom: -230px;
    left: -130px;

    background:
        rgba(104,65,164,.13);
}


.pf-shell {
    position: relative;
    z-index: 2;

    width:
        min(1180px, calc(100% - 48px));

    margin-inline: auto;

    padding:
        72px 0 28px;
}


/* ----------------------------------------------------------
   MAIN GRID
   ---------------------------------------------------------- */

.pf-grid {
    display: grid;

    grid-template-columns:
        minmax(245px,1.45fr)
        minmax(145px,.82fr)
        minmax(185px,1fr)
        minmax(260px,1.35fr);

    gap: 48px;

    align-items: start;
}


/* ----------------------------------------------------------
   BRAND
   ---------------------------------------------------------- */

.pf-logo {
    display: inline-flex;

    text-decoration: none;
}


.pf-logo img {
    display: block;

    width:
        clamp(150px,12vw,188px);

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 7px 20px
            rgba(0,0,0,.16)
        );
}


.pf-brand-text {
    max-width: 320px;

    margin:
        27px 0 0;

    color:
        rgba(220,239,242,.77);

    font-size: 1rem;
    line-height: 2.05;
}


.pf-history {
    display: grid;

    grid-template-columns:
        auto 1fr;

    gap:
        5px 14px;

    align-items: center;

    width: fit-content;

    margin-top: 27px;

    padding:
        13px 17px;

    border:
        1px solid rgba(207,171,91,.25);

    border-radius: 14px;

    background:
        rgba(9,31,44,.48);
}


.pf-history > strong {
    grid-row:
        1 / 3;

    color: #d7b365;

    font-size: 2.35rem;
    line-height: 1;
    font-weight: 650;
}


.pf-history > span {
    color: #e2eef0;

    font-size: .82rem;
    line-height: 1.55;
}


.pf-history > small {
    direction: ltr;

    color:
        rgba(216,177,94,.65);

    font-size: .62rem;
    letter-spacing: .08em;
}


/* ----------------------------------------------------------
   COLUMNS
   ---------------------------------------------------------- */

.pf-column h2 {
    position: relative;

    margin:
        4px 0 24px;

    padding-bottom: 13px;

    color: #f1fafb;

    font-size: 1.08rem;
    line-height: 1.5;
    font-weight: 800;
}


.pf-column h2::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            rgba(74,213,222,.12),
            #4dd5de
        );
}


.pf-column > nav:not(.pf-social) {
    display: flex;
    flex-direction: column;

    gap: 11px;
}


.pf-column > nav:not(.pf-social) a {
    width: fit-content;

    color:
        rgba(220,239,242,.78);

    font-size: .96rem;
    line-height: 1.75;

    text-decoration: none;

    transition:
        color .18s ease,
        transform .18s ease;
}


.pf-column > nav:not(.pf-social) a:hover,
.pf-column > nav:not(.pf-social) a:focus-visible {
    color: #65dfe6;

    transform:
        translateX(-3px);
}


/* ----------------------------------------------------------
   CONTACT
   ---------------------------------------------------------- */

.pf-contact-list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


.pf-contact-list > a,
.pf-address {
    display: grid;

    grid-template-columns:
        24px minmax(0,1fr);

    gap: 11px;

    align-items: start;

    color: inherit;

    text-decoration: none;
}


.pf-contact-icon {
    width: 19px;
    height: 19px;

    margin-top: 5px;

    color: #59d8df;
}


.pf-contact-list span {
    min-width: 0;
}


.pf-contact-list small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(174,211,217,.57);

    font-size: .75rem;
}


.pf-contact-list strong {
    display: block;

    color:
        rgba(239,249,250,.94);

    font-size: .95rem;
    font-weight: 650;
    line-height: 1.7;

    overflow-wrap: anywhere;
}


.pf-contact-list a[href^="mailto"] strong {
    direction: ltr;

    text-align: left;

    white-space: nowrap;
}


/* ----------------------------------------------------------
   SOCIAL
   ---------------------------------------------------------- */

.pf-social {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;
}


.pf-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    color: #65dce3;

    border:
        1px solid rgba(84,213,222,.21);

    border-radius: 11px;

    background:
        rgba(8,36,50,.72);

    text-decoration: none;

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}


.pf-social a svg {
    width: 19px;
    height: 19px;
}


.pf-social a:hover,
.pf-social a:focus-visible {
    color: #f1fdfe;

    transform:
        translateY(-2px);

    border-color:
        rgba(84,216,225,.54);

    background:
        rgba(24,78,91,.56);
}


/* ----------------------------------------------------------
   PROJECT STRIP
   ---------------------------------------------------------- */

.pf-project-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;

    margin-top: 58px;

    padding:
        23px 26px;

    border:
        1px solid rgba(80,211,220,.15);

    border-radius: 16px;

    background:
        linear-gradient(
            100deg,
            rgba(13,49,65,.70),
            rgba(13,37,52,.42)
        );
}


.pf-project-strip > div {
    display: grid;

    gap: 5px;
}


.pf-project-strip small {
    direction: ltr;

    color:
        rgba(91,218,225,.66);

    font-size: .65rem;
    letter-spacing: .09em;
}


.pf-project-strip strong {
    color: #edf8fa;

    font-size: 1rem;
    line-height: 1.6;
}


.pf-project-strip > a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    flex: 0 0 auto;

    padding:
        11px 17px;

    color: #082733;

    background: #62dce3;

    border-radius: 10px;

    font-size: .9rem;
    font-weight: 800;

    text-decoration: none;
}


.pf-project-strip > a span {
    font-size: 1.15rem;
}


/* ----------------------------------------------------------
   COPYRIGHT / BOTTOM BAR
   ---------------------------------------------------------- */

.pf-bottom {
    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 30px;

    align-items: center;

    margin-top: 27px;

    padding-top: 24px;

    border-top:
        1px solid rgba(91,190,201,.15);
}


.pf-copyright {
    display: flex;
    flex-wrap: wrap;

    gap:
        6px 14px;

    align-items: center;

    color:
        rgba(221,238,241,.72);

    font-size: .93rem;
}


.pf-copyright strong {
    color: #edf8f9;

    font-size: .98rem;
    font-weight: 750;
}


.pf-signature {
    display: flex;

    gap: 9px;

    color:
        rgba(160,202,208,.54);

    font-size: .68rem;
    letter-spacing: .07em;

    white-space: nowrap;
}


.pf-signature span {
    color:
        rgba(210,174,91,.72);
}


.pf-bottom-links {
    display: flex;

    gap: 15px;
}


.pf-bottom-links a {
    color:
        rgba(207,228,231,.68);

    font-size: .82rem;

    text-decoration: none;
}


.pf-bottom-links a:hover {
    color: #5fd9e1;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width:1000px) {

    .pf-grid {
        grid-template-columns:
            1.3fr 1fr;

        gap:
            48px 44px;
    }

    .pf-bottom {
        grid-template-columns:
            1fr auto;
    }

    .pf-signature {
        grid-column:
            1 / -1;

        order: 3;
    }
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width:640px) {

    .pf-shell {
        width:
            min(100% - 34px,1180px);

        padding:
            54px 0 24px;
    }

    .pf-grid {
        grid-template-columns:
            1fr;

        gap: 42px;
    }

    .pf-logo img {
        width: 155px;
    }

    .pf-brand-text {
        max-width: none;

        font-size: 1rem;
    }

    .pf-column h2 {
        font-size: 1.09rem;
    }

    .pf-column > nav:not(.pf-social) a {
        font-size: 1rem;
    }

    .pf-contact-list strong {
        font-size: .98rem;
    }

    .pf-project-strip {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 46px;
    }

    .pf-project-strip > a {
        width: 100%;

        justify-content: center;
    }

    .pf-bottom {
        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 16px;
    }

    .pf-copyright {
        font-size: .94rem;
    }

    .pf-signature {
        flex-wrap: wrap;

        white-space: normal;

        line-height: 1.7;
    }

    .pf-bottom-links {
        flex-wrap: wrap;
    }
}


/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */

@media (prefers-reduced-motion:reduce) {

    .pf-footer a,
    .pf-footer a * {
        transition: none !important;
    }
}

/* END P029M2 PROFESSIONAL FOOTER */
