.en-ft {
  background: #1a1512;
  color: #b9a99c;
  padding: 64px 40px 30px;
}

.en-ft-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}

.en-ft-brand {
  max-width: 300px;
}

.en-ft-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.en-ft-logo img {
  height: 45px;
  width: auto;
  display: block;
}

.en-ft-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
  color: #a5978a;
}

.en-ft-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.en-ft-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #f3ebe3;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.en-ft-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.en-ft-social-link img {
  display: block;
  max-width: 100%;
  height: auto;
}

.en-ft-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7d70;
  margin-bottom: 16px;
}

.en-ft-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #b9a99c;
}

.en-ft-links a {
  color: #b9a99c;
  text-decoration: none;
  transition: color .2s ease;
}

.en-ft-links a:hover {
  color: #fff;
}

.en-ft-bottom {
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8a7d70;
}

.en-sticky-cta {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  background: linear-gradient(135deg, #F0533F, #FB7185);
  color: #fff;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 16px 40px -10px rgba(240, 83, 63, .7);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: enFadeUp .3s ease both;
  text-decoration: none;
}

.en-sticky-cta:hover {
  background: linear-gradient(135deg, #D8452F, #EC6A54);
  color: #fff;
}

@media (max-width: 991px) {
  .en-ft-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .en-ft-brand {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .en-ft {
    padding: 48px 20px 24px;
  }

  .en-ft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .en-ft-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .en-sticky-cta {
    right: 16px;
    bottom: 16px;
    padding: 13px 18px;
    font-size: 14px;
  }
}
