.footer-colour-line {
    height: 4px;
    background: linear-gradient(90deg,
        var(--violet-storm) 0%,
        var(--cerulean) 20%,
        var(--sage) 38%,
        var(--turmeric) 55%,
        var(--saffron) 70%,
        var(--rose-mauve) 85%,
        var(--violet-storm) 100%);
    background-size: 200% 100%;
    animation: stripSlide 8s linear infinite;
}

footer {
    background: var(--indigo-night);
}

.footer-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 2rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.f-brand {
    flex: 1 1 300px;
    max-width: 430px;
}

.f-col {
    flex: 0 0 auto;
}

.f-col--explore {
    flex: 0 1 430px;
    min-width: min(100%, 360px);
}

.f-logo {
    display: block;
    margin-bottom: .75rem;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.58rem;
    font-weight: 600;
    letter-spacing: -.015em;
    text-decoration: none;
}

.f-logo b {
    color: var(--turmeric);
}

.f-tagline {
    max-width: 90%;
    margin-bottom: 1rem;
    color: rgba(250, 253, 247, .55);
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.f-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.f-soc {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: rgba(250, 253, 247, .62);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.f-soc-icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    overflow: visible;
}

.f-soc-icon path,
.f-soc-icon rect,
.f-soc-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.f-soc--facebook .f-soc-icon path {
    fill: currentColor;
    stroke: none;
}

.f-soc--instagram .f-soc-icon-dot {
    fill: currentColor;
    stroke: none;
}

.f-soc--whatsapp .f-soc-icon path:last-child {
    stroke-width: 1.45;
}

.f-soc:hover,
.f-soc:focus-visible {
    color: var(--turmeric);
}

.f-soc--facebook:hover,
.f-soc--facebook:focus-visible {
    color: #1877f2;
}

.f-soc--instagram:hover,
.f-soc--instagram:focus-visible {
    color: #e4405f;
}

.f-soc--whatsapp:hover,
.f-soc--whatsapp:focus-visible {
    color: #25d366;
}

.f-col-h {
    color: var(--turmeric);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.f-col-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.f-col-head p {
    margin: 0;
    color: rgba(250, 253, 247, .42);
    font-family: var(--font-display);
    font-size: .9rem;
    font-style: italic;
}

.f-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.f-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
    min-height: 46px;
    padding: .72rem .85rem;
    border: 1px solid rgba(250, 253, 247, .09);
    border-radius: 12px;
    background: rgba(250, 253, 247, .025);
    color: rgba(250, 253, 247, .72);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .015em;
    text-decoration: none;
    transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.f-links a:hover,
.f-links a:focus-visible {
    border-color: rgba(240, 165, 0, .34);
    background: rgba(240, 165, 0, .07);
    color: var(--cream);
    transform: translateY(-2px);
}

.f-explore-icon {
    display: inline-flex;
    flex: 0 0 64px;
    width: 64px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: rgba(250, 253, 247, .48);
    opacity: .78;
    transition: color .22s ease, opacity .22s ease, transform .22s ease;
}

.f-explore-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.f-explore-icon path,
.f-explore-icon rect,
.f-explore-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.f-explore-icon .f-icon-accent {
    stroke: var(--turmeric);
}

.f-explore-icon .f-icon-accent-fill {
    fill: var(--turmeric);
    stroke: none;
}

.f-icon-draw {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
}

.f-icon-page,
.f-icon-pen,
.f-icon-play,
.f-icon-person,
.f-icon-needle,
.f-icon-sun {
    transform-box: fill-box;
    transform-origin: center;
}

.f-links a:hover .f-explore-icon,
.f-links a:focus-visible .f-explore-icon {
    color: rgba(250, 253, 247, .92);
    opacity: 1;
    transform: translateX(2px);
}

.f-links a:hover .f-icon-draw,
.f-links a:focus-visible .f-icon-draw {
    animation: pc-footer-icon-draw .62s ease both;
}

.f-links a:hover .f-icon-sun,
.f-links a:focus-visible .f-icon-sun {
    animation: pc-footer-sun-rise .62s ease both;
}

.f-links a:hover .f-icon-page,
.f-links a:focus-visible .f-icon-page {
    animation: pc-footer-page-turn .62s ease both;
}

.f-links a:hover .f-icon-pen,
.f-links a:focus-visible .f-icon-pen {
    animation: pc-footer-pen-write .62s ease both;
}

.f-links a:hover .f-icon-play,
.f-links a:focus-visible .f-icon-play {
    animation: pc-footer-play-pulse .58s ease both;
}

.f-links a:hover .f-icon-person,
.f-links a:focus-visible .f-icon-person {
    animation: pc-footer-person-rise .48s ease both;
}

.f-links a:hover .f-icon-person--two,
.f-links a:focus-visible .f-icon-person--two {
    animation-delay: .08s;
}

.f-links a:hover .f-icon-person--three,
.f-links a:focus-visible .f-icon-person--three {
    animation-delay: .16s;
}

.f-links a:hover .f-icon-needle,
.f-links a:focus-visible .f-icon-needle {
    animation: pc-footer-compass-turn .68s cubic-bezier(.22, .8, .24, 1) both;
}

@keyframes pc-footer-icon-draw {
    from { stroke-dashoffset: 1; opacity: .25; }
    to { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes pc-footer-sun-rise {
    from { opacity: 0; transform: translateY(7px) scale(.65); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pc-footer-page-turn {
    0% { opacity: .3; transform: perspective(60px) rotateY(-42deg); }
    100% { opacity: 1; transform: perspective(60px) rotateY(0); }
}

@keyframes pc-footer-pen-write {
    0% { opacity: .35; transform: translate(-7px, 5px); }
    100% { opacity: 1; transform: translate(0, 0); }
}

@keyframes pc-footer-play-pulse {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.28); }
}

@keyframes pc-footer-person-rise {
    from { opacity: .35; transform: translateY(5px) scale(.75); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pc-footer-compass-turn {
    from { transform: rotate(-95deg) scale(.82); }
    to { transform: rotate(0) scale(1); }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .f-explore-icon,
    .f-explore-icon * {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

.footer-bottom {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(250, 253, 247, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

.f-legal-links {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem 1.5rem 0;
    border-top: 1px solid rgba(250, 253, 247, .1);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .55rem 1.25rem;
}

.f-legal-links a {
    color: rgba(250, 253, 247, .64);
    font-size: .7rem;
    letter-spacing: .06em;
    text-decoration: none;
}

.f-legal-links a:hover,
.f-legal-links a:focus-visible {
    color: var(--saffron);
}

.f-copy,
.f-heart {
    color: rgba(250, 253, 247, .48);
    font-size: .65rem;
    letter-spacing: .1em;
}

.f-heart span {
    color: var(--saffron);
}

img {
    max-width: 100%;
    height: auto;
}
