@charset "utf-8";

.footer {
  color: hsl(0 0% 94%);
  background: linear-gradient(to bottom, hsl(0 0% 19%), hsl(0 0% 14%));
}

.footer__top {
  padding: calc(var(--wSpace) * 2.4) var(--wSpace) calc(var(--wSpace) * 2);
}

.footer__columns {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: calc(var(--wSpace) * 2);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: space-between;
}

.footer__col h3 {
  color: hsl(0 0% 100%);
  margin: 0.2rem 0 0;
  font-size: 1.3rem;
}

.footer__logo {
  display: inline-flex;
  width: fit-content;
}

.footer__logo img {
  width: clamp(180px, 24vw, 280px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer p {
  color: hsl(0 0% 92%);
  margin: 0;
  font-size: 0.8rem;
}

.footer a {
  color: hsl(0 0% 96%);
  text-decoration: none;
  transition: color 0.25s ease;
  letter-spacing: 0.05em;
}

.footer a:hover {
  color: hsl(5 90% 67%);
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer__contact,
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1.35;
  padding: 0;
}

.footer__links li {
  padding: 0;
  line-height: 1.35;
}

.footer__icon {
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid hsl(0 0% 78%);
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.72rem;
  color: hsl(0 0% 86%);
  flex: 0 0 auto;
}

.footer__certs {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: hsl(0 0% 82%);
}

.footer__col--legal {
  font-size: 0.94rem;
}

.footer__col--legalTop {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__made-in-britain {
  width: clamp(92px, 10vw, 120px);
  height: auto;
  margin-top: 0.5rem;
}

.footer__bottom-wrap {
  border-top: 1px solid hsl(0 0% 100% / 0.15);
  background-color: hsl(0 0% 10% / 0.55);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--wSpace);
  min-height: 74px;
  padding: calc(var(--wSpace) * 0.8) var(--wSpace);
}

.footer__bottom p {
  font-size: 0.92rem;
}

.footer__bottom-actions {
  display: flex;
  align-items: center;
  gap: calc(var(--wSpace) * 0.8);
}

.footer__linkedin {
  width: 2.2rem;
  height: 2.2rem;
  border: 2px solid hsl(0 0% 100% / 0.35);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease;
}

.footer__linkedin:hover {
  border-color: hsl(5 90% 67%);
}

.footer__linkedin svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer__cta {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid hsl(0 0% 100% / 0.35);
  padding: 0.55rem 1rem;
  border-radius: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
}

.footer__cta:hover {
  border-color: hsl(5 90% 67%);
}
.cookie-banner {
  position: fixed;
  bottom: calc(var(--wSpace) * 1.5);
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90%);
  background-color: var(--bgPageDarkMax);
  color: white;
  padding: calc(var(--wSpace) * 1.5);
  border-radius: 6px;
  box-shadow: var(--shadow-elevation-medium);
  display: none;
  z-index: 9999;
  font-family: "Barlow", sans-serif;
}

.cookie-text {
  margin-bottom: calc(var(--wSpace) * 1);
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: calc(var(--wSpace) * 1);
}

.cookie-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cookie-btn.accept {
  background-color: var(--mazeRed);
  color: white;
}

.cookie-link-reject {
  font-size: 0.85rem;
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
  align-self: center;
}
.cookie-link-reject:hover {
  color: var(--mazeRed);
}

@media only screen and (max-width: 1080px) {
  .footer__columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col--identity {
    grid-column: 1 / -1;
  }
}

@media only screen and (max-width: 780px) {
  .footer__top {
    padding: calc(var(--wSpace) * 1.6) var(--wSpace) calc(var(--wSpace) * 1.2);
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: calc(var(--wSpace) * 1.25);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--wSpace) * 0.6);
  }

  .footer__bottom-actions {
    width: 100%;
    justify-content: space-between;
  }

  .footer__cta {
    text-align: center;
  }
}
